diff --git a/CHANGELOG.md b/CHANGELOG.md index ab51a68..99ad4f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. > List all changes before release a new version. +## [3.0.0.beta4] (2023-04-11) + +### Added + +- Add `.files` method to proguard parser. + +### Fixed + +- Fail to extract dsym contents. + ## [3.0.0.beta3] (2023-04-05) ### Added @@ -292,7 +302,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed)) -[Unreleased]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta3..HEAD +[Unreleased]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta4..HEAD +[3.0.0.beta4]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta3...v3.0.0.beta4 [3.0.0.beta3]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta2...v3.0.0.beta3 [3.0.0.beta2]: https://github.com/icyleaf/app-info/compare/v3.0.0.beta1...v3.0.0.beta2 [3.0.0.beta1]: https://github.com/icyleaf/app-info/compare/v2.8.5...v3.0.0.beta1 diff --git a/lib/app_info/version.rb b/lib/app_info/version.rb index 19c344e..4a3ff78 100644 --- a/lib/app_info/version.rb +++ b/lib/app_info/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module AppInfo - VERSION = '3.0.0.beta3' + VERSION = '3.0.0.beta4' end