mirror of
https://github.com/samsonjs/Osiris.git
synced 2026-03-25 08:55:48 +00:00
Prepare for 2.0.0 release
This commit is contained in:
parent
310607ed00
commit
ff3b0b6e12
3 changed files with 3 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# Changelog
|
||||
|
||||
## [2.0.0] - Unreleased
|
||||
## [2.0.0] - 2025-06-15
|
||||
|
||||
### Added
|
||||
- **GET/DELETE query parameter support** - Parameters are now automatically encoded as query strings for GET and DELETE requests
|
||||
|
|
|
|||
|
|
@ -10,18 +10,12 @@ let package = Package(
|
|||
.macOS(.v11),
|
||||
],
|
||||
products: [
|
||||
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
||||
.library(
|
||||
name: "Osiris",
|
||||
targets: ["Osiris"]),
|
||||
],
|
||||
dependencies: [
|
||||
// Dependencies declare other packages that this package depends on.
|
||||
// .package(url: /* package url */, from: "1.0.0"),
|
||||
],
|
||||
dependencies: [],
|
||||
targets: [
|
||||
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
||||
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
||||
.target(
|
||||
name: "Osiris",
|
||||
dependencies: []),
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ Add the package to your project's Package Dependencies by entering the URL `http
|
|||
Add this to your Package.swift dependencies:
|
||||
|
||||
```swift
|
||||
.package(url: "https://github.com/samsonjs/Osiris.git", .upToNextMajor(from: "1.0.0"))
|
||||
.package(url: "https://github.com/samsonjs/Osiris.git", .upToNextMajor(from: "2.0.0"))
|
||||
```
|
||||
|
||||
and add `"Osiris"` to your target dependencies.
|
||||
|
|
|
|||
Loading…
Reference in a new issue