Skip to content

Commit 833c3a3

Browse files
committed
update README, CHANGELOG, pom.xml
1 parent 08dc46c commit 833c3a3

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ Changelog
22
========================================
33
Since tools.analyzer.jvm version are usually cut simultaneously with a tools.analyzer version, check also the tools.analyzer [CHANGELOG](https://github.com/clojure/tools.analyzer/blob/master/CHANGELOG.md) for changes on the corresponding version, since changes in that library will reflect on this one.
44
- - -
5-
5+
* Release 0.7.2 on 16 Jan 2018
6+
* Correctly handle deftype analysis when `let` is excluded
7+
* Release 0.7.1 on 21 Jun 2017
8+
* Correctly handle array classes
69
* Release 0.7.0 on 14 Feb 2017
710
* Release 0.7.0-alpha1 on 26 Jan 2017
811
* Added handle-evaluation-exception opts to `analyze+eval`

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ YourKit is kindly supporting open source projects with its full-featured Java Pr
119119
Releases and Dependency Information
120120
========================================
121121

122-
Latest stable release: 0.7.0
122+
Latest stable release: 0.7.2
123123

124124
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22tools.analyzer.jvm%22)
125125

@@ -128,15 +128,16 @@ Latest stable release: 0.7.0
128128
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
129129

130130
```clojure
131-
[org.clojure/tools.analyzer.jvm "0.7.0"]
131+
[org.clojure/tools.analyzer.jvm "0.7.2"]
132+
132133
```
133134
[Maven](http://maven.apache.org/) dependency information:
134135

135136
```xml
136137
<dependency>
137138
<groupId>org.clojure</groupId>
138139
<artifactId>tools.analyzer.jvm</artifactId>
139-
<version>0.7.0</version>
140+
<version>0.7.2</version>
140141
</dependency>
141142
```
142143

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@
3636
</dependency>
3737
<dependency>
3838
<groupId>org.ow2.asm</groupId>
39-
<artifactId>asm-all</artifactId>
40-
<version>4.2</version>
39+
<artifactId>asm</artifactId>
40+
<version>5.2</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.clojure</groupId>
4444
<artifactId>tools.reader</artifactId>
45-
<version>1.0.0-beta4</version>
45+
<version>1.1.1</version>
4646
</dependency>
4747
</dependencies>
4848

0 commit comments

Comments
 (0)