From dacfbd87b80ca2593ab2c402c551eea3c8a56821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Zieli=C5=84ski?= <fzielinski@gmail.com> Date: Fri, 27 Oct 2023 15:55:03 +0200 Subject: [PATCH] Create release 1.1.6 (#57) --- BlueSwift.podspec | 2 +- CHANGELOG.md | 6 ++++++ Configurations/Common/Common-Base.xcconfig | 2 +- Readme.md | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/BlueSwift.podspec b/BlueSwift.podspec index 692c096..03d9021 100644 --- a/BlueSwift.podspec +++ b/BlueSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = 'BlueSwift' - spec.version = '1.1.5' + spec.version = '1.1.6' spec.summary = 'Easy and lightweight CoreBluetooth wrapper written in Swift' spec.homepage = 'https://github.com/netguru/BlueSwift' diff --git a/CHANGELOG.md b/CHANGELOG.md index 55a637a..476f828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.1.6] - 2023-10-27 + +### Changed + +- Fix Swift 5.9 (Xcode 15) build error caused by `Data(bytes:count:)` initializer. + ## [1.1.5] - 2023-01-24 ### Changed diff --git a/Configurations/Common/Common-Base.xcconfig b/Configurations/Common/Common-Base.xcconfig index c9df45e..1d033a1 100644 --- a/Configurations/Common/Common-Base.xcconfig +++ b/Configurations/Common/Common-Base.xcconfig @@ -5,7 +5,7 @@ #include "../xcconfigs/Common/Common.xcconfig" -_BUILD_VERSION = 1.1.5 +_BUILD_VERSION = 1.1.6 _BUILD_NUMBER = 1 _DEPLOYMENT_TARGET_IOS = 11.0 diff --git a/Readme.md b/Readme.md index dff4b1d..01ad787 100644 --- a/Readme.md +++ b/Readme.md @@ -95,7 +95,7 @@ Just drop the line below to your Podfile: `pod 'BlueSwift'` -(but probably you'd like to pin it to the nearest major release, so `pod 'BlueSwift' , '~> 1.1.5'`) +(but probably you'd like to pin it to the nearest major release, so `pod 'BlueSwift' , '~> 1.1.6'`) ###  @@ -103,7 +103,7 @@ The same as with Cocoapods, insert the line below to your Cartfile: `github 'netguru/BlueSwift'` -, or including version - `github 'netguru/BlueSwift' ~> 1.1.5` +, or including version - `github 'netguru/BlueSwift' ~> 1.1.6` ## 📄 License