flutter_secure_storage
A Flutter plugin for securely storing sensitive data using encrypted storage.
11.0.0
1000K downloads/mo
#15 most downloaded on pub.dev
mogol/flutter_secure_storage
What this package is like to depend on
Last release 17 days ago
06 Aug 2026
Release timing varies
gaps range from 1 weeks to 11 months
Some releases are documented
notes for 27 of 48 stable releases
Nothing withdrawn
no release was ever pulled
9 years old
60 releases · first in 2017
8 releases in the last 12 months
see the full history below
Release timeline
60 releases · Oct 2017 to Aug 2026Releases
latest 60-
11.0.006 Aug 2026Release notes
Open source →11.0.0 (2026-08-06)
Breaking changes
items deprecated in v10 have been removed.
Any data saved using deprecated algorithms or features will be unusable after this upgrade. If you used a version prior to v10, upgrade to v10 first so existing data is migrated.Android
- Removed
KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Upgrade to v10 first so existing data is migrated toRSA_ECB_OAEPwithSHA_256andMGF1Paddingbefore upgrading to v11. - Removed
StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Upgrade to v10 first so existing data is migrated toAES_GCM_NoPaddingbefore upgrading to v11. - Removed
encryptedSharedPreferencesparameter fromAndroidOptionsandAndroidOptions.biometric. The Jetpack Security (EncryptedSharedPreferences) backend is no longer supported; any remaining data was automatically migrated to custom cipher storage in v10. - Removed
sharedPreferencesNamefromAndroidOptions. UsestorageNamespaceinstead for full namespace isolation. - Raised
minSdkto 24 andcompileSdkto 37. Flutter 3.35 raised its own Android minimum to API 24, making API 23 support unverifiable with any supported Flutter version. The legacy AES-CBC cipher path that supported API 21-22 has been removed.
Features
- android: add requireBiometricConfirmation option to AndroidOptions (7f5f7de)
Bug Fixes
- android: catch Throwable on worker thread so keystore Errors don't crash the app (d5802ff)
- android: don't swallow VM errors, catch Throwable on biometric thread too (d413d3f)
- linux: handle missing default keyring (b39c7c1)
- linux: fail closed on orphaned keyring data (2e720ff)
- remove redundant ./ prefix from part directives (cc7018d)
Release notes
Open source →Breaking changes
items deprecated in v10 have been removed. Any data saved using deprecated algorithms or features will be unusable after this upgrade. If you used a version prior to v10, upgrade to v10 first so existing data is migrated.
Android
- Removed
KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Upgrade to v10 first so existing data is migrated toRSA_ECB_OAEPwithSHA_256andMGF1Paddingbefore upgrading to v11. - Removed
StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Upgrade to v10 first so existing data is migrated toAES_GCM_NoPaddingbefore upgrading to v11. - Removed
encryptedSharedPreferencesparameter fromAndroidOptionsandAndroidOptions.biometric. The Jetpack Security (EncryptedSharedPreferences) backend is no longer supported; any remaining data was automatically migrated to custom cipher storage in v10. - Removed
sharedPreferencesNamefromAndroidOptions. UsestorageNamespaceinstead for full namespace isolation. - Raised
minSdkto 24 andcompileSdkto 37. Flutter 3.35 raised its own Android minimum to API 24, making API 23 support unverifiable with any supported Flutter version. The legacy AES-CBC cipher path that supported API 21-22 has been removed.
Features
- android: add requireBiometricConfirmation option to AndroidOptions (7f5f7de)
Bug Fixes
- android: catch Throwable on worker thread so keystore Errors don't crash the app (d5802ff)
- android: don't swallow VM errors, catch Throwable on biometric thread too (d413d3f)
- linux: handle missing default keyring (b39c7c1)
- linux: fail closed on orphaned keyring data (2e720ff)
- remove redundant ./ prefix from part directives (cc7018d)
- Removed
-
11.0.0-beta.102 Jun 2026 pre-releaseRelease notes
Open source →Breaking changes
items deprecated in v10 have been removed.
Any data saved using deprecated algorithms or features will be unusable after this upgrade. If you used a version prior to v10, upgrade to v10 first so existing data is migrated.Android
- Removed
KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Upgrade to v10 first so existing data is migrated toRSA_ECB_OAEPwithSHA_256andMGF1Paddingbefore upgrading to v11. - Removed
StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Upgrade to v10 first so existing data is migrated toAES_GCM_NoPaddingbefore upgrading to v11. - Removed
encryptedSharedPreferencesparameter fromAndroidOptionsandAndroidOptions.biometric. The Jetpack Security (EncryptedSharedPreferences) backend is no longer supported; any remaining data was automatically migrated to custom cipher storage in v10. - Removed
sharedPreferencesNamefromAndroidOptions. UsestorageNamespaceinstead for full namespace isolation. - Raised
minSdkto 24 andcompileSdkto 37. Flutter 3.35 raised its own Android minimum to API 24, making API 23 support unverifiable with any supported Flutter version. The legacy AES-CBC cipher path that supported API 21-22 has been removed.
- Removed
-
10.3.127 May 2026Release notes
Open source →Android
- Fixed
AEADBadTagExceptionwhen biometric authentication is cancelled on first launch: a stale IV is now cleared and the cipher re-initialised in encrypt mode so the next authentication attempt succeeds. - Fixed
NullPointerExceptionwhen retrying an operation after a cancelled biometric prompt:preferencesis now only assigned once cipher initialisation completes successfully, allowing a clean retry.
- Fixed
-
10.3.022 May 2026Release notes
Open source →Android
- Added
AndroidBiometricTypeenum andbiometricTypeoption toAndroidOptionsto control which authentication methods are accepted during biometric prompts (requiresKeyCipherAlgorithm.AES_GCM_NoPadding).AndroidBiometricType.biometricOrDeviceCredential(default) accepts Class 3 biometrics or device credentials (PIN/pattern/password), preserving previous behaviour.AndroidBiometricType.strongBiometricOnlyrestricts authentication to Class 3 (strong) biometrics only; device credentials are explicitly rejected.
- Fully enforced on Android 11+ (API 30+) via
setAllowedAuthenticatorsonBiometricPromptandsetUserAuthenticationParameterson the KeyStore key. On earlier API levels the system may still permit device credentials. - Added
biometricPromptNegativeButtonoption toAndroidOptionsto customise the dismiss button label on the biometric prompt. Required when usingstrongBiometricOnlyor on Android 10 and lower.
iOS / macOS
- Fixed
secStoreAvailabilitySinknot being called when protected data availability changes. - Fixed
kSecUseDataProtectionKeychainbeing added to Keychain queries unconditionally; it is now only set whenuseDataProtectionKeychainis explicitly enabled.
Windows
- Fixed
deleteAllandcontainsKeynot acquiring the mutex lock, which could cause data races under concurrent access. If you are on Dart >=3.10.0, this fix is applied automatically. Otherwise, pinflutter_secure_storage_windows: ^4.2.2in yourpubspec.yamlto opt in and make sure your constraint is set for minimum of Dart >=3.10.0.
Linux
- Fixed
deleteKeyringstoring the string"null"instead of an empty JSON object{}. - Fixed non-UTF-8 error messages from libsecret causing a
FormatExceptionon the Dart side; messages are now sanitised before being sent through the method channel. - Fixed locked or unavailable keyring now surfacing as a catchable
PlatformExceptionwith codeKeyringLocked. - Fixed JSON parse errors and other C++ exceptions now surfacing as a
PlatformExceptionwith codeStorageErrorinstead of sending malformed bytes through the channel.
- Added
-
10.2.011 May 2026Release notes
Open source →Android
- Deprecated
KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Existing data is automatically migrated to the defaultRSA_ECB_OAEPwithSHA_256andMGF1PaddingwhenmigrateOnAlgorithmChangeis true. - Deprecated
StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Existing data is automatically migrated to the defaultAES_GCM_NoPaddingwhenmigrateOnAlgorithmChangeis true. - Fixed Gradle space-assignment warnings in
build.gradle.
iOS / macOS
- Fixed iOS build by updating availability annotation for Secure Enclave methods from
iOS 11.3toiOS 13.0.
Windows
- Fixed compatibility with
win326.0.0 influtter_secure_storage_windows 4.2.0. If you are on Dart >=3.10.0, this fix is applied automatically. Otherwise, pinflutter_secure_storage_windows: ^4.2.0in yourpubspec.yamlto opt in and make sure your constraint is set for minimum of Dart >=3.10.0.
- Deprecated
-
10.1.006 May 2026Release notes
Open source →Windows
- Updated
flutter_secure_storage_windowsto 4.2.0 with compatibility fixes forwin326.0.0.
Android
- Added
storageNamespaceoption toAndroidOptionsfor full namespace isolation across storage instances (SharedPreferences, KeyStore aliases, config/key storage). Use this instead ofsharedPreferencesNamewhen running multipleFlutterSecureStorageinstances with different cipher configurations. - Deprecated
sharedPreferencesNamein favor ofstorageNamespace, which provides complete isolation rather than data-only isolation. - Added
migrateWithBackupoption toAndroidOptionsfor crash-resistant migration. When enabled, backup copies of encrypted data are created before migration starts, allowing recovery if migration fails or the app crashes mid-migration. Works in conjunction withmigrateOnAlgorithmChange. - Made
KeyCipherAlgorithmandStorageCipherAlgorithmpublic enums.
Fixes:
- Fixed crash on biometric failure (not error).
- Fixed null safety issue in
MethodRunnerthat could cause a crash on Android. - Fixed config being overwritten on initialization.
- Fixed default Android key cipher not aligning with the Flutter default.
iOS / macOS
- Added
useSecureEnclaveoption toIOSOptionsandMacOsOptionsto store keys in the device's Secure Enclave for hardware-backed security.
Fixes:
- Fixed
kSecAttrSynchronizablebeing silently dropped when no access control flags are set. - Fixed
readAllnot returning Secure Enclave items correctly.
- Updated
-
10.0.010 Dec 2025Release notes
Open source →This major release brings significant security improvements, platform updates, and modernization across all supported platforms.
Android
Due to the deprecation of Jetpack Security library, the Android implementation has been largely rewritten with custom secure ciphers, enhanced biometrics support, and migration tools.
Breaking Changes:
AndroidOptions().encryptedSharedPreferencesis now deprecated due to Jetpack Crypto package deprecation- Migration will automatically happen due to
migrateOnAlgorithmChange: true, which can also be set to false if not wanted.
- Migration will automatically happen due to
- ResetOnError will now automatically be true, because most errors are unrecoverable due to key storage problems. It can still be disabled with
resetOnError: false - Default key cipher changed to
RSA_ECB_OAEPwithSHA_256andMGF1Padding - Default storage cipher changed to
AES_GCM_NoPadding - Minimum Android SDK changed from 19 to 23
- Target SDK updated to 36
- Migrated from deprecated Jetpack Crypto library to custom cipher implementation (Tink doesn't support biometrics)
- Migrated to Java Version 17
New Features:
- New named constructors:
AndroidOptions(),AndroidOptions.biometric() AndroidOptions().migrateOnAlgorithmChangeautomatically migrates data to new ciphers when enabled- Improved biometric authentication with graceful degradation when device has no security setup
- Migration tools for transitioning from deprecated encryptedSharedPreferences
- Enhanced error handling with proper exception messages for biometric unavailability
Fixes:
- Fixed biometric authentication on devices without security (PIN/pattern/password) - now gracefully degrades when
enforceBiometrics=false - Fixed storage cipher and key cipher pairing validation
- Fixed migration checks for encrypted shared preferences
- Fixed biometric permission handling
- Fixed exception when reading data after boot
Other Changes:
- Updated Gradle, Kotlin, and Tink dependencies
- Refactored custom cipher implementations for better maintainability
- Added delete key functions for proper reset handling
- Migrated to new analyzer and code cleanup
iOS / macOS (darwin)
- Merged iOS and macOS implementations into unified
flutter_secure_storage_darwinpackage - Added support for Swift Package Manager
- Remove keys regardless of synchronizable state or accessibility constraints
- Change minimum iOS version from 9 to 12
- Change minimum macOS version to 10.14
- Use serial queue for execution of keychain operations
- Added privacy manifest
- Refactored code and added missing options to IOSOptions and MacOSOptions
- Fixed warnings with Privacy Manifest
- Fixed delete and deleteAll when synchronizable is set
- Fixed migration when value is saved while key already exists with different accessibility option
- Use accessibility option for all operations
- Migrated to new analyzer and code cleanup
Web
- Web is now compatible with WASM
- Updated code style and migrated to very_good_analysis
- Add check for secure context (operations only allowed with secure context)
- Remove dart:io to support WASM build
- Migrated away from
htmltowebpackage - Removed
jsin favor of using js-interop - Added
useSessionStorageparameter to WebOptions for saving in session storage instead of local storage - Updated web dependency support to <2.0.0
- Migrated to new analyzer and code cleanup
Windows
- Upgrades deprecated member usage of win32
- Migrated to
win32version 5.5.4 to support Dart 3.4 / Flutter 3.22.0 - Migrated to new analyzer and code cleanup
- Write encrypted data to files instead of the Windows credential system
Linux
- Fixed whitespace deprecation warning
- Reverted json.dump with indentations due to problems
- Fixed search with schemas fails in cold keyrings
- Fixed erase called on null
- Fixed memory management issue
- Remove and replace libjsoncpp1 dependency
- Migrated to new analyzer and code cleanup
Platform Interface
- Remove dart:io to support WASM build of web
- Migrated to new analyzer and code cleanup
General Improvements
- Listener functionality via
FlutterSecureStorage().registerListener() - All platforms updated to support Dart SDK <4.0.0
- Comprehensive test coverage improvements
- Documentation updates across all platforms
-
10.0.0-beta.527 Nov 2025 pre-releaseRelease notes
Open source →Due to security issues regarding the handling of biometrics in v10.0.0-beta.4, together with the deprecation of Jetpack Security library, it took me some time to find a secure alternative. My apologies for the delay.
The Android part has been largely rewritten, reintroducing the customer cipher construction from before, but with secure ciphers, biometrics support, updated default ciphers and migration tools.
Breaking Changes:
AndroidOptions().encryptedSharedPreferencesis now deprecated due to Jetpack Crypto package being deprecated For now you can still use deprecated encryptedSharedPreferences by settingencryptedSharedPreferences: trueandmigrateOnAlgorithmChange: false. IfencryptedSharedPreferencesistrueandmigrateOnAlgorithmChangeistrue, data will be automatically migrated to the new cipher, and encryptedSharedPreferences cannot be used anymore.- Google recommends using Tink library, but Tink does not support biometrics, so custom ciphers have been reintroduced
- Default key cipher changed to
RSA_ECB_OAEPwithSHA_256andMGF1Padding - Default storage cipher changed to
AES_GCM_NoPadding
New Features:
- New named constructors:
AndroidOptions(),AndroidOptions.biometric() AndroidOptions().migrateOnAlgorithmChangeautomatically migrates data to new ciphers when enabled- Improved biometric authentication with graceful degradation when device has no security setup
- Migration tools for transitioning from deprecated encryptedSharedPreferences
- Enhanced error handling with proper exception messages for biometric unavailability
Key Fixes:
- Fixed biometric authentication on devices without security (PIN/pattern/password) - now gracefully degrades when
enforceBiometrics=false - Fixed storage cipher and key cipher pairing validation
- Fixed migration checks for encrypted shared preferences
- Fixed biometric permission handling
- Fixed default
resetOnErrorbehavior (now defaults totrue)
Other Changes:
- Target SDK 36
- Updated Gradle, Kotlin, and Tink dependencies
- Updated minimum SDK according to Flutter requirements
- Refactored custom cipher implementations for better maintainability
- Added delete key functions for proper reset handling
-
10.0.0-beta.410 Jan 2025 pre-releaseRelease notes
Open source →- [Apple] Merged ios and macos implementation into a new package flutter_secure_storage_darwin
- [Apple] Refactored code and added missing options
- [Apple] Added support for swift package manager
- [Web] Update flutter_secure_storage_platform_interface to be compatible with WASM.
-
10.0.0-beta.309 Jan 2025 pre-releaseRelease notes
Open source →- [iOS] Fix delete and deleteAll when synchronizable is set.
- [iOS] Update migration when value is saved while key already exists with different accessibility option.
- [Android] Fix deprecation warning.
-
10.0.0-beta.207 Jan 2025 pre-releaseRelease notes
Open source →- [Web] Update flutter_secure_storage_platform_interface to be compatible with WASM.
-
10.0.0-beta.106 Jan 2025 pre-releaseRelease notes
Open source →This new major release has some big changes. This plugin requires a minimum dart sdk of 3.3.0 or higher and a minimum flutter version of 3.19.0.
[Android]
- By default, encryptedSharedPreferences will be enabled, and cannot be disabled. If there is still data saved by previous versions using encryptedSharedPreferences = false, it will be automatically transferred to encryptedSharedPreferences.
- Migrated from deprecated Jetpack Crypto library to Google Tink Crypto library.
- Migrated to Android SDK 35
- Migrated to Java Version 17
- Minimum Android SDK is changed from 19 to 23.
- Migrated to new analyzer and clean-up code.
- Lots of minor code improvements
[iOS]
- Change minimum iOS version from 9 to 12
- Use serial queue for execution of iOS keychain operations
- Migrated to new analyzer and clean-up code.
[Web]
- Web is now migrated to be compatible with WASM.
- The parameter useSessionStorage is added to WebOptions, which you can use to save in session storage instead of local storage.
- Migrated to new analyzer and clean-up code.
[Windows]
- Migrates to
win32version 5.5.4 to support Dart 3.4 / Flutter 3.22.0. - Migrated to new analyzer and clean-up code.
[Platform Interface]
- Migrated to new analyzer and clean-up code.
-
9.2.409 Jan 2025Release notes
Open source →- [Android] Fix errors when building for release by upgrading Tink to 1.9.0.
- [iOS] Fix delete and deleteAll when synchronizable is set.
- [iOS] Update migration when value is saved while key already exists with different accessibility option.
-
9.2.303 Jan 2025Release notes
Open source →- [iOS] Fix for issue #711: The specified item already exists in the keychain.
- [Linux] Fix json.dump with indentations.
- [Web] Update web dependency support to support <2.0.0 instead of <1.0.0.
- [Web] Add wrapKey and wrapKeyIv parameters to webOptions. See readme for more information.
- [macOS] Added useDataProtectionKeyChain parameter.
-
9.2.222 May 2024Release notes
Open source →[iOS, macOS] Fixed an issue which caused the readAll and deleteAll to not work properly.
-
9.2.116 May 2024Release notes
Open source →- Fix async race condition bug in storage operations.
- [macOS] Return nil on macOS if key is not found
-
9.2.015 May 2024Release notes
Open source →New Features:
- [iOS, macOS] Reintroduced isProtectedDataAvailable.
- Listener functionality via
FlutterSecureStorage().registerListener()
Bugs Fixed:
- [iOS] Return nil on iOS read if key is not found
- [macOS] Also set kSecUseDataProtectionKeychain on read for macos.
-
9.1.108 May 2024Release notes
Open source →Reverts new feature because of breaking changes.
- [iOS, macOS] Added isProtectedDataAvailable, A boolean value that indicates whether content protection is active.
-
9.1.008 May 2024Release notes
Open source →New Features:
- [iOS, macOS] Added isProtectedDataAvailable, A boolean value that indicates whether content protection is active.
Improvements:
- [iOS, macOS] Use accessibility option for all operations
- [iOS, macOS] Added privacy manifest
- [iOS] Fixes error when no item exists
- [Linux] Fixed search with schemas fails in cold keyrings
- [Linux] Fixed erase called on null
- [Android] Fixed native Android stacktraces in PlatformExceptions
- [Android] Fixed exception when reading data after boot
-
9.0.029 Aug 2023 -
8.1.029 Aug 2023Release notes
Open source →- [Android] Upgraded to Gradle 8.
- [Android] Fixed resetOnError not working.
- [Windows] Changed PathNotFoundException to FileSystemException to be backwards compatible with Flutter SDK 2.12.0.
- [Windows] Applied lint suggestions.
- [Linux] Remove and replace libjsoncpp1 dependency.
- [Linux, macOS, Windows, Web] Update Dart SDK Constraint to support <4.0.0 instead of <3.0.0.
-
8.0.009 Feb 2023Release notes
Open source →Breaking changes:
- [macOS] The minimum macOS version supported is now 10.14.
Other changes:
- [Android] Fixed an issue when Encrypted Shared Preferences failed, the fallback would not handle the data correctly.
- [Windows] Write encrypted data to files instead of the windows credential system.
- [Linux] Fixed an issue with memory management.
-
7.0.112 Dec 2022Release notes
Open source →[Android] Reverted double initialization of the SharedPreferences because this will break mixed usage of secureSharedPreference on Android.
-
7.0.009 Dec 2022Release notes
Open source →Breaking changes:
- [macOS] The minimum macOS version supported is now 10.13.
Other changes:
- [Android] Fixed double initialization of the SharedPreferences which caused containsKey and other functions to not work properly.
- [macOS] Upgraded codebase to swift which fixed containsKey always returning true.
-
6.1.024 Nov 2022Release notes
Open source →- [iOS] (From 6.1.0-beta.1) Migrated from objective C to Swift. This also fixes issues with containsKey and possibly other issues.
- [Android] Upgrade security-crypto from 1.1.0-alpha03 to 1.1.0-alpha04
- [Android] Fix deprecation warnings.
- [All] Migrated from flutter_lints to lint and applied suggestions.
-
6.1.0-beta.130 Sep 2022 pre-releaseRelease notes
Open source →- [iOS] Migrated from objective C to Swift. This also fixes issues with containsKey and possibly other issues.
-
6.0.016 Aug 2022 -
5.1.216 Aug 2022Release notes
Open source →This version reverts some breaking changes of update 5.1.0. These changes will become available in version 6.0.0
- [Android] Revert upgrade to Android SDK 33.
-
5.1.116 Aug 2022 -
5.1.004 Aug 2022Release notes
Open source →- [Android] You can now select your own key prefix or database name.
- [Android] Upgraded to Android SDK 33.
- [Android] You can now select the keyCipherAlgorithm and storageCipherAlgorithm.
- [Linux] Fixed an issue where no error was being reported if there was something wrong accessing the secret service.
- [macOS] Fixed an memory-leak.
- [macOS] You can now select the same options as for iOS.
-
5.0.215 Nov 2021Release notes
Open source →- [Android] Fixed bug where sharedPreference object was not yet initialized.
-
5.0.115 Nov 2021 -
5.0.012 Nov 2021Release notes
Open source →First stable release of flutter_secure_storage for multi-platform! Please see all beta release notes for changes.
This first release also fixes several stability issues on Android regarding encrypted shared preferences.
-
5.0.0-beta.531 Aug 2021 pre-releaseNothing published for this version
-
5.0.0-beta.420 Aug 2021 pre-releaseNothing published for this version
-
5.0.0-beta.310 Aug 2021 pre-releaseNothing published for this version
-
5.0.0-beta.204 Aug 2021 pre-releaseNothing published for this version
-
5.0.0-beta.130 Jul 2021 pre-releaseNothing published for this version
-
4.2.129 Jul 2021Nothing published for this version
-
4.2.026 Apr 2021Nothing published for this version
-
4.1.009 Mar 2021Nothing published for this version
-
4.0.021 Feb 2021Nothing published for this version
-
3.3.508 Oct 2020Nothing published for this version
-
3.3.416 Sep 2020Nothing published for this version
-
3.3.318 Apr 2020Nothing published for this version
-
3.3.205 Apr 2020Nothing published for this version
-
3.3.110 Sep 2019Nothing published for this version
-
3.3.1+118 Sep 2019Nothing published for this version
-
3.3.010 Sep 2019Nothing published for this version
-
3.2.130 Mar 2019Nothing published for this version
-
3.2.1+130 Mar 2019Nothing published for this version
-
3.2.014 Feb 2019Nothing published for this version
-
3.1.321 Jan 2019Nothing published for this version
-
3.1.221 Sep 2018Nothing published for this version
-
3.1.116 Jul 2018Nothing published for this version
-
3.1.019 May 2018Nothing published for this version
-
3.0.014 Apr 2018Nothing published for this version
-
2.0.001 Mar 2018Release notes
Open source →- Breaking change. Changed key alias to fix Android 4.4.2 issue. The plugin isn't able to get previous stored data.
-
1.0.008 Feb 2018Nothing published for this version
-
0.0.131 Oct 2017Nothing published for this version