From 14b2fa6873217461cd882c42e6bef620725b5649 Mon Sep 17 00:00:00 2001 From: Husnjak Date: Tue, 24 Oct 2023 15:03:00 +0200 Subject: [PATCH] update package version --- IGDB-SWIFT-API.podspec | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/IGDB-SWIFT-API.podspec b/IGDB-SWIFT-API.podspec index fd60495..6b96013 100644 --- a/IGDB-SWIFT-API.podspec +++ b/IGDB-SWIFT-API.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'IGDB-SWIFT-API' - s.version = ENV['LIB_VERSION'] || '0.4.3-alpha' + s.version = ENV['LIB_VERSION'] || '0.4.3' s.summary = 'Wrapper for IGDBs API written in Swift.' s.description = "A Swift wrapper for the IGDB.com Free Video Game Database API." s.documentation_url = "https://api-docs.igdb.com" diff --git a/README.md b/README.md index 1cf94af..40012da 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ You can either import this library using Xcode by simply pasting this repository Or if you have a `Package.swift` file you can add this: ```swift dependencies: [ -.package(url: "https://github.com/husnjak/IGDB-SWIFT-API.git", from: "0.4.2"), +.package(url: "https://github.com/husnjak/IGDB-SWIFT-API.git", from: "0.4.3"), ], targets: [ .target(name: "MyTarget", dependencies: ["IGDB-SWIFT-API"]),