Skip to content

Commit 21b4fa8

Browse files
committed
Release 2.6.4
1 parent b71414a commit 21b4fa8

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.6.4] - 2023-02-03
8+
### Changed
9+
- Updated iOS deployment target to 11.0.
10+
- Updated Package.swift so that UIKit-dependent classes are available where UIKit can be imported.
711

812
## [2.6.3] - 2021-08-21
913
### Changed

Example/FeatureFlags.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,10 @@
510510
baseConfigurationReference = 54924E0C57E29ACFE49AB01C /* Pods-FeatureFlags_Example.debug.xcconfig */;
511511
buildSettings = {
512512
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
513+
CURRENT_PROJECT_VERSION = 1;
513514
INFOPLIST_FILE = FeatureFlags/Info.plist;
514515
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
516+
MARKETING_VERSION = 2.6.4;
515517
MODULE_NAME = ExampleApp;
516518
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.FeatureFlags-Example";
517519
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -525,8 +527,10 @@
525527
baseConfigurationReference = 0C5EB5D9EDF130DB7E936583 /* Pods-FeatureFlags_Example.release.xcconfig */;
526528
buildSettings = {
527529
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
530+
CURRENT_PROJECT_VERSION = 1;
528531
INFOPLIST_FILE = FeatureFlags/Info.plist;
529532
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
533+
MARKETING_VERSION = 2.6.4;
530534
MODULE_NAME = ExampleApp;
531535
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.FeatureFlags-Example";
532536
PRODUCT_NAME = "$(TARGET_NAME)";

FeatureFlags.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FeatureFlags'
3-
s.version = '2.6.3'
3+
s.version = '2.6.4'
44
s.swift_version = '5.0'
55
s.summary = 'Feature flagging, A/B testing, MVT and phased feature roll out for iOS.'
66
s.description = <<-DESC
@@ -11,6 +11,6 @@ FeatureFlags makes it easy to configure feature flags, A/B and MVT tests via a J
1111
s.license = { :type => 'MIT', :file => 'LICENSE' }
1212
s.author = { 'Ross Butler' => '[email protected]' }
1313
s.source = { :git => 'https://github.com/rwbutler/FeatureFlags.git', :tag => s.version.to_s }
14-
s.ios.deployment_target = '9.0'
14+
s.ios.deployment_target = '11.0'
1515
s.source_files = 'FeatureFlags/Classes/**/*'
1616
end

0 commit comments

Comments
 (0)