Skip to content

Commit e653873

Browse files
chore(release): 1.2.0 [skip ci]
# [1.2.0](v1.1.0...v1.2.0) (2021-07-26) ### Bug Fixes * Fix some path bugs and get the tests working ([ec32e23](ec32e23)) * Remove unused class RecordServlet ([1bd39de](1bd39de)) ### Features * 'init' command suggests appmap.yml with project name and packages ([299bb70](299bb70)) * 'status' command reports project properties ([cb4693d](cb4693d)) * 'status' command reports test commands ([058ae0e](058ae0e)) * Add stub for agent 'init' command ([55d9fc8](55d9fc8)) * Add stub for agent 'status' command ([7f5fd02](7f5fd02)) * Helper commands can direct output to a file ([bf1c699](bf1c699)), closes [#89](#89)
1 parent 0712ce9 commit e653873

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [1.2.0](https://github.com/applandinc/appmap-java/compare/v1.1.0...v1.2.0) (2021-07-26)
2+
3+
4+
### Bug Fixes
5+
6+
* Fix some path bugs and get the tests working ([ec32e23](https://github.com/applandinc/appmap-java/commit/ec32e2364c0a1f44d60c8c4907d7b5e2cc617a1e))
7+
* Remove unused class RecordServlet ([1bd39de](https://github.com/applandinc/appmap-java/commit/1bd39de4585845d790140b0d7735716d643b76e8))
8+
9+
10+
### Features
11+
12+
* 'init' command suggests appmap.yml with project name and packages ([299bb70](https://github.com/applandinc/appmap-java/commit/299bb70714b706448dd0a56439540737e2894f81))
13+
* 'status' command reports project properties ([cb4693d](https://github.com/applandinc/appmap-java/commit/cb4693d568ff891ee62db8f4c456fbf4215b0d1a))
14+
* 'status' command reports test commands ([058ae0e](https://github.com/applandinc/appmap-java/commit/058ae0ee64d099fcecb6427ffed62c3568c8212b))
15+
* Add stub for agent 'init' command ([55d9fc8](https://github.com/applandinc/appmap-java/commit/55d9fc87db2df54b7f5d6c9a50613012c7ae50d7))
16+
* Add stub for agent 'status' command ([7f5fd02](https://github.com/applandinc/appmap-java/commit/7f5fd02abe9e99497f17a0265e33495e7c2dc0ed))
17+
* Helper commands can direct output to a file ([bf1c699](https://github.com/applandinc/appmap-java/commit/bf1c6992aac43742074f21b6d72acee9365f0181)), closes [#89](https://github.com/applandinc/appmap-java/issues/89)
18+
119
# [1.1.0](https://github.com/applandinc/appmap-java/compare/v1.0.4...v1.1.0) (2021-05-13)
220

321

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repositories {
2424
// hardcoded -- could be redefined via env variables and project properties (see below)
2525
def parameterizedVersion = findProperty('appMapAgentVersion')
2626
def travisVersion = System.getenv("TRAVIS_BRANCH")
27-
def defaultVersion = '1.1.0'
27+
def defaultVersion = '1.2.0'
2828

2929
def versionLikeRegexp = /^\d+\.\d+.*/
3030
def travisVersionValid = travisVersion && (travisVersion ==~ versionLikeRegexp)

0 commit comments

Comments
 (0)