Codebase list java-classpath-clojure / 16a72c1
Update CHANGES, README for 0.3.0 release Stuart Sierra 5 years ago
2 changed file(s) with 12 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
11
22 ## 0.3.x series
33
4 ### 0.3.0-SNAPSHOT, current development version
4 ### Release [0.3.0] on 2018-May-06
55
66 * Fix [CLASSPATH-8]: empty classpath returned on Java 9.
77
5858
5959
6060
61 [CLASSPATH-8]: http://dev.clojure.org/jira/browse/CLASSPATH-8
6162 [CLASSPATH-7]: http://dev.clojure.org/jira/browse/CLASSPATH-7
6263 [CLASSPATH-6]: http://dev.clojure.org/jira/browse/CLASSPATH-6
6364 [CLASSPATH-5]: http://dev.clojure.org/jira/browse/CLASSPATH-5
6667 [CLASSPATH-2]: http://dev.clojure.org/jira/browse/CLASSPATH-2
6768 [CLASSPATH-1]: http://dev.clojure.org/jira/browse/CLASSPATH-1
6869
70 [0.3.0]: https://github.com/clojure/java.classpath/tree/java.classpath-0.3.0
6971 [0.2.3]: https://github.com/clojure/java.classpath/tree/java.classpath-0.2.3
7072 [0.2.2]: https://github.com/clojure/java.classpath/tree/java.classpath-0.2.2
7173 [0.2.1]: https://github.com/clojure/java.classpath/tree/java.classpath-0.2.1
44
55 ## Releases and Dependency Information
66
7 Latest stable release is 0.2.3
7 Latest stable release is 0.3.0
88
99 [Leiningen] dependency information:
1010
11 [org.clojure/java.classpath "0.2.3"]
11 [org.clojure/java.classpath "0.3.0"]
1212
1313 [Maven] dependency information:
1414
1515 <dependency>
1616 <groupId>org.clojure</groupId>
1717 <artifactId>java.classpath</artifactId>
18 <version>0.2.3</version>
18 <version>0.3.0</version>
1919 </dependency>
2020
2121 [Gradle] dependency information:
2222
23 compile "org.clojure:java.classpath:0.2.3"
23 compile "org.clojure:java.classpath:0.3.0"
2424
2525 [Leiningen]: http://leiningen.org/
2626 [Maven]: http://maven.apache.org/
6868 protocol `URLClasspath` to support it. Refer to the source for
6969 details.
7070
71 **Starting with version 0.3.0**, the `classpath` function will fall
72 back to the `java.class.path` system property if the parent
73 ClassLoader is not an instance of [URLClassLoader](https://docs.oracle.com/javase/9/docs/api/java/net/URLClassLoader.html),
74 which is true for Java 9 and later.
75
7176
7277 ## Developer Information
7378