From ff3b0b6e1219157b73ba949ebb84843a9ad9843a Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sun, 15 Jun 2025 08:34:21 -0700 Subject: [PATCH] Prepare for 2.0.0 release --- CHANGELOG.md | 2 +- Package.swift | 8 +------- Readme.md | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ff930d..4515e96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Package.swift b/Package.swift index 5e5e3f3..310ca19 100644 --- a/Package.swift +++ b/Package.swift @@ -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: []), diff --git a/Readme.md b/Readme.md index 6968d0a..9a05660 100644 --- a/Readme.md +++ b/Readme.md @@ -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.