Skip to content

Commit

Permalink
Prepare 3.0.1 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Aug 16, 2019
1 parent b1b391b commit d38f6e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change Log
==========

Version 3.0.1 *(2019-08-16)*
----------------------------

This is a hotfix release for Chucker `3.0.0`.

**Summary of Changes**

* Fix: [#96] Limit size of binary image to 1 million bytes.


Version 3.0.0 *(2019-08-12)*
----------------------------

Expand Down Expand Up @@ -183,3 +193,4 @@ Initial release.
[#81]: https://github.com/ChuckerTeam/chucker/pull/81
[#86]: https://github.com/ChuckerTeam/chucker/pull/86
[#87]: https://github.com/ChuckerTeam/chucker/pull/87
[#96]: https://github.com/ChuckerTeam/chucker/pull/96
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ repositories {

```groovy
dependencies {
debugImplementation "com.github.ChuckerTeam.Chucker:library:3.0.0"
releaseImplementation "com.github.ChuckerTeam.Chucker:library-no-op:3.0.0"
debugImplementation "com.github.ChuckerTeam.Chucker:library:3.0.1"
releaseImplementation "com.github.ChuckerTeam.Chucker:library-no-op:3.0.1"
}
```

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ org.gradle.jvmargs=-Xmx1536m
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=3.0.0
# 3*100*100 + 0*100 + 0 => 30000
VERSION_CODE=30000
VERSION_NAME=3.0.1
# 3*100*100 + 0*100 + 1 => 30001
VERSION_CODE=30001
GROUP=com.github.chuckerteam.chucker

POM_REPO_NAME=Chucker
Expand Down

0 comments on commit d38f6e2

Please sign in to comment.