Skip to content

Commit

Permalink
Release 2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed Feb 3, 2023
1 parent b71414a commit 21b4fa8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [2.6.3] - 2021-08-21
### Changed
Expand Down
4 changes: 4 additions & 0 deletions Example/FeatureFlags.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,10 @@
baseConfigurationReference = 54924E0C57E29ACFE49AB01C /* Pods-FeatureFlags_Example.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = FeatureFlags/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.6.4;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.FeatureFlags-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -525,8 +527,10 @@
baseConfigurationReference = 0C5EB5D9EDF130DB7E936583 /* Pods-FeatureFlags_Example.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = 1;
INFOPLIST_FILE = FeatureFlags/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 2.6.4;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "com.rwbutler.demo.FeatureFlags-Example";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
4 changes: 2 additions & 2 deletions FeatureFlags.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FeatureFlags'
s.version = '2.6.3'
s.version = '2.6.4'
s.swift_version = '5.0'
s.summary = 'Feature flagging, A/B testing, MVT and phased feature roll out for iOS.'
s.description = <<-DESC
Expand All @@ -11,6 +11,6 @@ FeatureFlags makes it easy to configure feature flags, A/B and MVT tests via a J
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ross Butler' => '[email protected]' }
s.source = { :git => 'https://github.com/rwbutler/FeatureFlags.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.ios.deployment_target = '11.0'
s.source_files = 'FeatureFlags/Classes/**/*'
end

0 comments on commit 21b4fa8

Please sign in to comment.