From 40460329fb67905ff8e4bc91b2413158752a0843 Mon Sep 17 00:00:00 2001 From: Alex Odawa Date: Fri, 14 Jun 2024 00:47:34 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 1 + SampleApp/Podfile.lock | 12 ++++++------ version.rb | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 425a1c4d2..532a42e99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Main] ### Fixed +- Fixed a string range bug when a closed range should be half open. ### Added diff --git a/SampleApp/Podfile.lock b/SampleApp/Podfile.lock index 5bb84eb8b..85f38d46f 100644 --- a/SampleApp/Podfile.lock +++ b/SampleApp/Podfile.lock @@ -1,8 +1,8 @@ PODS: - - BlueprintUI (4.1.0) - - BlueprintUI/Tests (4.1.0) - - BlueprintUICommonControls (4.1.0): - - BlueprintUI (= 4.1.0) + - BlueprintUI (4.1.1) + - BlueprintUI/Tests (4.1.1) + - BlueprintUICommonControls (4.1.1): + - BlueprintUI (= 4.1.1) DEPENDENCIES: - BlueprintUI (from `../BlueprintUI.podspec`) @@ -16,8 +16,8 @@ EXTERNAL SOURCES: :path: "../BlueprintUICommonControls.podspec" SPEC CHECKSUMS: - BlueprintUI: e3977b3657a5ce03b61b55a8e5cfdcae32c772b4 - BlueprintUICommonControls: 8c3c5a718be323baab2c01093978f2735553e035 + BlueprintUI: 7f09cc438e04105800fae3d634578a0a4d779081 + BlueprintUICommonControls: 7eb7688ca0308772a9cef0af840531be4e12f5e8 PODFILE CHECKSUM: 1cffac4623851f31dc42270ba99701e3825e6d67 diff --git a/version.rb b/version.rb index 2e8504e4c..ecef4f583 100644 --- a/version.rb +++ b/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -BLUEPRINT_VERSION ||= '4.1.0' +BLUEPRINT_VERSION ||= '4.1.1' SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))