Skip to content

Commit

Permalink
Updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed Oct 15, 2024
1 parent 1f08cb6 commit f7a836a
Show file tree
Hide file tree
Showing 5 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
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.0.1] - 2024-10-15
### Changed
- Removed the 'v' from the version string in UpdatesUI.

## [2.0.0] - 2024-10-15
### Added
- Added PrivacyInfo.xcprivacy
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Updates.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.0.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = com.rwbutler.updates;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -525,7 +525,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.0.1;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = com.rwbutler.updates;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ To manually notify users of updates to your app configure your JSON file as foll
"app-store-id": "123456",
"comparing": "major-versions",
"min-os-required": "12.0.0",
"version": "2.0.0"
"version": "2.0.1"
}
}
```
Expand All @@ -193,7 +193,7 @@ Updates.notifying = .always
Updates.appStoreId = "123456"
Updates.comparingVersions = .major
Updates.minimumOSVersion = "12.0.0"
Updates.versionString = "2.0.0"
Updates.versionString = "2.0.1"
```


Expand Down
2 changes: 1 addition & 1 deletion Updates.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Updates'
s.version = '2.0.0'
s.version = '2.0.1'
s.swift_version = '5.0'
s.summary = 'Updates is a framework for automatically detecting app updates and seamlessly prompting users to update.'
s.description = <<-DESC
Expand Down

0 comments on commit f7a836a

Please sign in to comment.