diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..d8630e8 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,30 @@ +repos: + # Websec hook is MANDATORY, DO NOT comment it. + - repo: https://github.com/mercadolibre/fury_websec-git-hooks + rev: v1.0.3 + hooks: + - id: pre_commit_hook + stages: [commit] + - id: post_commit_hook + stages: [post-commit] + + # Next hooks are Code Quality hooks. + # If you want them to run on each commit, uncomment them + # These are OPTIONAL. + + # - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks + # rev: v2.3.0 + # hooks: + # - id: pretty-format-java + # args: [--autofix] + # - repo: https://github.com/mercadolibre/fury_code-quality-pre-commit-java + # rev: 1.0.1 + # hooks: + # - id: checkstyle + # args: + # - -c + # - .code_quality/checkstyle_rules.xml + # - id: pmd + # args: + # - -R + # - .code_quality/pmd_rules.xml diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd45c0..d06f42b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## VERSION 2.4.1 +_14_07_2022_ +- Fix - Fix the bug por illegalStateException + ## VERSION 2.4.0 _28_04_2022_ - Enhancement - Support for 8-digit bins diff --git a/buildSrc/src/main/java/Versions.kt b/buildSrc/src/main/java/Versions.kt index 6ca893b..8407036 100644 --- a/buildSrc/src/main/java/Versions.kt +++ b/buildSrc/src/main/java/Versions.kt @@ -26,7 +26,7 @@ object Versions { const val mockk = "1.10.0" const val coroutinesTest = "1.3.0" - const val libraryVersion = "2.4.0" + const val libraryVersion = "2.4.1" // Instrumentation Tests const val espresso = "3.1.0"