* Updated the `spm_tests_macos` job to test with Swift versions 5.7,
5.5, and 5.3
* Updated the `spm_tests_macos` and `spm_tests_linux` jobs to print the
Swift version
* Illustrated the use of feature flag value transformation
* Updated phrasing and formatting in `README`
* Updated code documentation
* Updated version numbers
* Extended `FeatureFlag` with support for raw values
* Introduced `FeatureFlagValueTransformer` for converting between native and raw values
* Updated tests
* Updated `FeatureFlagResolverConfigurationProtocol`’s requirements to make `stores` mutable
* Updated `FeatureFlagResolverConfiguration` to conform to the updated `FeatureFlagResolverConfigurationProtocol`
* Removed `MutableFeatureFlagResolverConfiguration`
* Updated `FeatureFlagResolverConfigurationTests`
* The configuration object used in the initializer now has the type `FeatureFlagResolverConfigurationProtocol` set explicitly, in order to use the non-deprecated initializer
* [#69] Implemented a protocol-based initializer in `FeatureFlagResolver` (#70)
* [#68] Added support for mutable `stores` in resolver configuration via a new implementation, `MutableFeatureFlagResolverConfiguration` (#72)
* Introduced `MutableFeatureFlagResolverConfiguration`, a class that conforms to `FeatureFlagResolverConfigurationProtocol` and allows its `stores` property to be modified
* Added `FeatureFlagResolverConfigurationTests`
* The designated initializer’s `configuration` parameter is now of type `FeatureFlagResolverConfigurationProtocol`
* Introduced `init(stores:)`, a replacement for the old `FeatureFlagResolverConfiguration`-based initializer
* Added a convenience initializer that accepts `FeatureFlagResolverConfiguration`; deprecated it in favor of `init(stores:)`
* Updated some tests to use `init(stores:)`
* Added documentation to the resolver’s initializer
* Added `--allow-warnings` to `cocoapods-podspec-lint`
* [#63] Added support for installation via CocoaPods (#64)
* [#65] Removed redundant Linux test manifest (#66)
* Updated `import`s in tests
* Updated docs title in Jazzy configuration
* Created `YMFF.podspec` to support YMFF installation via CocoaPods
* Updated sources to support both SPM and CocoaPods
* Added podspec linting on CI
* Updated `README` with CocoaPods installation instructions
* [#41] Switched to the all-new stores model (#52)
* [#39] Moved YMFF protocols to a separate target (#50)
* [#43] Implemented change saving for mutable stores (#53)
* [#48] Fixed a bug with override value validation (#49)
* [#54] Updated override methods in `FeatureFlagResolverProtocol` (#56)
* [#60] Added more tests to reach 100% coverage (#61)
* [#45] Configured testing on Linux runners (#58)
* [#51] Updated documentation (#59)
* [#55, etc.] Updated Jazzy configuration
* Extended `MutableFeatureFlagStoreProtocol` with an optional method `saveChanges()`
* Implemented `saveChanges()` in `UserDefaultsStore`
* Added change saving to `FeatureFlagResolver`’s `deinit`
* Extended `FeatureFlagStore` with an `asMutable` computed property
* Added `MutableStoreTests`
* Updated Linux tests
* Introduced the new `FeatureFlagStore` enum in YMFFProtocols used to configure the resolver
* Updated `FeatureFlagResolverConfiguration`
* Updated `FeatureFlagResolver`
* Removed the old `FeatureFlagStore` from the YMFF implementation target
* Extended `TransparentFeatureFlagStore` with a `FeatureFlagStoreProtocol` conformance
* Updated tests