Skip to content

Commit

Permalink
v3.27.0: Change -[NSURL queryParameters] to `-[NSURL es_queryParame…
Browse files Browse the repository at this point in the history
…ters]`
  • Loading branch information
ElfSundae committed Oct 18, 2021
1 parent 02d4621 commit 4955d37
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 3.27.0 (2021-10-18)

- Change `-[NSURL queryParameters]` to `-[NSURL es_queryParameters]`

## 3.26.3 (2021-09-23)

- Add new device models: iMac 2021, iPad 2021, iPhone 13 series
Expand Down
2 changes: 1 addition & 1 deletion ESFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ESFramework'
s.version = '3.26.3'
s.version = '3.27.0'
s.license = 'MIT'
s.summary = 'An efficient, lightweight foundational framework for iOS, macOS, tvOS, watchOS, and Mac Catalyst.'
s.homepage = 'https://github.com/ElfSundae/ESFramework'
Expand Down
4 changes: 2 additions & 2 deletions ESFramework.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2051,7 +2051,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 3.26.3;
MARKETING_VERSION = 3.27.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -2130,7 +2130,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 3.26.3;
MARKETING_VERSION = 3.27.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down
2 changes: 1 addition & 1 deletion ESFramework/Foundation/NSURL+ESExtension.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ NS_ASSUME_NONNULL_BEGIN
/**
* Returns the URL query parameters.
*/
- (nullable NSDictionary<NSString *, id> *)queryParameters;
- (nullable NSDictionary<NSString *, id> *)es_queryParameters;

/**
* Returns a newly created URL added the given query parameters.
Expand Down
2 changes: 1 addition & 1 deletion ESFramework/Foundation/NSURL+ESExtension.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@implementation NSURL (ESExtension)

- (NSDictionary<NSString *, id> *)queryParameters
- (NSDictionary<NSString *, id> *)es_queryParameters
{
return [NSURLComponents componentsWithURL:self resolvingAgainstBaseURL:YES].queryParameters;
}
Expand Down
2 changes: 1 addition & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ attributes:
ORGANIZATIONNAME: 'https://0x123.com'

settings:
MARKETING_VERSION: 3.26.3
MARKETING_VERSION: 3.27.0
CURRENT_PROJECT_VERSION: 3
# Fix warning for Xcode 11.3: Enable "Missing Localizability"
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED: YES
Expand Down

0 comments on commit 4955d37

Please sign in to comment.