diff --git a/CHANGELOG.md b/CHANGELOG.md index aca19099..5ad78a00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.0.2](https://github.com/applandinc/appmap-java/compare/v1.0.1...v1.0.2) (2021-03-18) + + +### Bug Fixes + +* improve path and package resolution ([#62](https://github.com/applandinc/appmap-java/issues/62)) ([c3ba3df](https://github.com/applandinc/appmap-java/commit/c3ba3df5286cba6efd929e6cdcf583ebc28b96b2)) + ## [1.0.1](https://github.com/applandinc/appmap-java/compare/v1.0.0...v1.0.1) (2021-03-17) diff --git a/build.gradle b/build.gradle index afbbdf60..01c678fa 100644 --- a/build.gradle +++ b/build.gradle @@ -24,7 +24,7 @@ repositories { // hardcoded -- could be redefined via env variables and project properties (see below) def parameterizedVersion = findProperty('appMapAgentVersion') def travisVersion = System.getenv("TRAVIS_BRANCH") -def defaultVersion = '1.0.1' +def defaultVersion = '1.0.2' def versionLikeRegexp = /^\d+\.\d+.*/ def travisVersionValid = travisVersion && (travisVersion ==~ versionLikeRegexp)