@@ -11,29 +11,29 @@ See the [tools.trace API Reference](http://clojure.github.io/tools.trace/).
1111Releases and Dependency Information
1212======================================== 
1313
14- Latest stable release: 0.7.11 
14+ Latest stable release: 0.8.0 
1515
1616*  [ All Released Versions] ( http://search.maven.org/#search|ga|1|g%3A%22org.clojure%22%20AND%20a%3A%22tools.trace%22 ) 
1717
1818*  [ Development Snapshot Versions] ( https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~tools.trace~~~ ) 
1919
2020[ CLI/` deps.edn ` ] ( https://clojure.org/reference/deps_and_cli )  dependency information:
2121``` clojure 
22- org.clojure/tools.trace {:mvn/version  " 0.7.11 " 
22+ org.clojure/tools.trace {:mvn/version  " 0.8.0 " 
2323``` 
2424
2525[ Leiningen] ( https://github.com/technomancy/leiningen )  dependency information:
2626
2727``` clojure 
28-     [org.clojure/tools.trace " 0.7.11 " 
28+     [org.clojure/tools.trace " 0.8.0 " 
2929``` 
3030
3131[ Maven] ( http://maven.apache.org/ )  dependency information:
3232``` xml 
3333    <dependency >
3434      <groupId >org.clojure</groupId >
3535      <artifactId >tools.trace</artifactId >
36-       <version >0.7.11 </version >
36+       <version >0.8.0 </version >
3737    </dependency >
3838``` 
3939
@@ -85,61 +85,51 @@ Developer Information
8585Change Log
8686==================== 
8787
88+ *  Release 0.8.0 Feb 19, 2024:
89+   *  Update parent pom version
8890*  Release 0.7.11 Feb 11, 2021:
8991  *  Fixed reflection warnings with type hints
90- 
9192*  Release 0.7.10 September 23, 2018:
9293  *  Closed TTRACE-16, applied fix from Andy Fingerhut, fixed typos in README, support Clojure 1.9, fixes to unit tests
9394  *  Closed TTRACE-13, trace-ns macro accept both quoted or unquoted namespace argument
94-   
9595*  Release 0.7.9 October 8, 2015:
9696  *  Closed TTRACE-11, trace-vars/untrace-vars now accept vars
9797  *  Closed TTRACE-12, move away from Java 5, extend some new throwables with ThrowableRecompose  
9898  *  Added more tests for TTRACE-12
99- 
10099*  Release 0.7.8 March 15, 2013:
101100  *  Fixed README
102- 
103101*  Release 0.7.7 March 14, 2013:
104102  *  Replaced def by declare in deftrace macro
105103  *  Remove unnecessary call to run-tests in test suite
106104  *  Trace only functions in trace-vars* 
107105  *  Added missing cond in clone-throwable on a Throwable
108106  *  Do not allow trace-vars*  to reapply tracing on an already traced function
109- 
110107*  Release 0.7.6 Aug 23, 2013:
111108  *  Fixed crash of throwable tracing when no string based constructor exists
112- 
113109*  Release 0.7.5 Dec 1, 2012:
114110  *  Fixed README and comments in source file
115- 
116111*  Release 0.7.4 Dec 1, 2012:
117112  *  added traced? and traceable/ fns
118113  *  removed reflection warnings
119-   
120114*  Release 0.7.3 March 4, 2012:
121115  *  added macro wrappers around fns allowing dynamic tracing.
122- 
123116*  Release 0.7.2 Feb. 20, 2012:
124117  *  added contribution from Michał Marczyk and Don Jackson to allow dynamic tracing of fn vars and all fns in a given namespace.
125-   
126118*  Release 0.7.1 on 2011-09-18
127119  *  moved it to new contrib modular struct
128120  *  made it 1.2/1.3 compliant
129121  *  supported doc strings
130122  *  added a trace-form macro, from Jonathan Fischer
131-   
132123*  Changes from clojure.trace
133124  *  replaced * trace-out*  with tracer
134125  *  made trace a function instead of a macro (suggestion from Stuart Halloway)
135126  *  added trace-fn-call
136127
137128
138- 
139129Copyright and License
140130======================================== 
141131
142- Copyright (c) Stuart Sierra, Michel Salim, Luc Préfontaine, Jonathan Fischer Friberg, Michał Marczyk, Andy Fingerhut 2011-2018 .
132+ Copyright (c) Stuart Sierra, Michel Salim, Luc Préfontaine, Jonathan Fischer Friberg, Michał Marczyk, Andy Fingerhut.
143133All rights reserved.
144134The use and distribution terms for this software are covered by the Eclipse Public
145135License 1.0 (https://opensource.org/license/epl-1-0/ ) which can
0 commit comments