Prepare for 2.0.0 release

This commit is contained in:
Sami Samhuri 2025-06-15 08:34:21 -07:00
parent 310607ed00
commit ff3b0b6e12
No known key found for this signature in database
3 changed files with 3 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# Changelog # Changelog
## [2.0.0] - Unreleased ## [2.0.0] - 2025-06-15
### Added ### Added
- **GET/DELETE query parameter support** - Parameters are now automatically encoded as query strings for GET and DELETE requests - **GET/DELETE query parameter support** - Parameters are now automatically encoded as query strings for GET and DELETE requests

View file

@ -10,18 +10,12 @@ let package = Package(
.macOS(.v11), .macOS(.v11),
], ],
products: [ products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library( .library(
name: "Osiris", name: "Osiris",
targets: ["Osiris"]), targets: ["Osiris"]),
], ],
dependencies: [ dependencies: [],
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [ 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( .target(
name: "Osiris", name: "Osiris",
dependencies: []), dependencies: []),

View file

@ -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: Add this to your Package.swift dependencies:
```swift ```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. and add `"Osiris"` to your target dependencies.