From e6f5e5e9156e24e72b908c189798b54f167fc8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Zieli=C5=84ski?= Date: Fri, 20 Jan 2023 14:24:19 +0100 Subject: [PATCH] Create release 1.1.4 (#53) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Filip Zieliński --- BlueSwift.podspec | 2 +- CHANGELOG.md | 7 +++++++ Configurations/Common/Common-Base.xcconfig | 2 +- Readme.md | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/BlueSwift.podspec b/BlueSwift.podspec index a172453..803ed69 100644 --- a/BlueSwift.podspec +++ b/BlueSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = 'BlueSwift' - spec.version = '1.1.3' + spec.version = '1.1.4' 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 1da9d5b..5536fba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.1.4] - 2023-01-20 + +### Changed + +- Synchronize access to array storing peripherals to increase thread safety. + + ## [1.1.3] - 2022-10-25 ### Changed diff --git a/Configurations/Common/Common-Base.xcconfig b/Configurations/Common/Common-Base.xcconfig index c620a49..686589a 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.3 +_BUILD_VERSION = 1.1.4 _BUILD_NUMBER = 1 _DEPLOYMENT_TARGET_IOS = 11.0 diff --git a/Readme.md b/Readme.md index 771992b..399c457 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.3'`) +(but probably you'd like to pin it to the nearest major release, so `pod 'BlueSwift' , '~> 1.1.4'`) ### ![](https://img.shields.io/badge/carthage-compatible-green.svg) @@ -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.3` +, or including version - `github 'netguru/BlueSwift' ~> 1.1.4` ## 📄 License