Skip to content

Commit

Permalink
Version bump 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mlorenze committed Apr 15, 2024
1 parent 071cae4 commit 8e1e797
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.


### [5.5.0](https://github.com/xmartlabs/Eureka/releases/tag/5.5.0)

* Created PrivacyInfo file

### [5.4.0](https://github.com/xmartlabs/Eureka/releases/tag/5.4.0)

* Renamed several methods that clashed with private Obj-C methods and triggered warnings when uploading to App Store (#2231)
Expand Down
2 changes: 1 addition & 1 deletion Eureka.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Eureka'
s.version = '5.4.0'
s.version = '5.5.0'
s.license = 'MIT'
s.summary = 'Elegant iOS Forms in pure Swift'
s.homepage = 'https://github.com/xmartlabs/Eureka'
Expand Down
4 changes: 2 additions & 2 deletions Eureka.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.4.0;
MARKETING_VERSION = 5.5.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -769,7 +769,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.4.0;
MARKETING_VERSION = 5.5.0;
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.Eureka;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ $ pod install
After you set up your `Package.swift` manifest file, you can add Eureka as a dependency by adding it to the dependencies value of your `Package.swift`.

dependencies: [
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.4.0")
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.5.0")
]


Expand All @@ -1133,7 +1133,7 @@ dependencies: [
Specify Eureka into your project's `Cartfile`:

```ogdl
github "xmartlabs/Eureka" ~> 5.4
github "xmartlabs/Eureka" ~> 5.5
```

#### Manually as Embedded Framework
Expand Down

0 comments on commit 8e1e797

Please sign in to comment.