diff --git a/CHANGELOG.md b/CHANGELOG.md index ddbb79df..faee59f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). -## [Unreleased] +## [2.25.0] - 2020-03-22 ### Added - Ability to specify prefix and suffix for temp files ([#1005](https://github.com/planck-repl/planck/issues/1005)) - Implement `console.time*` functionality ([#997](https://github.com/planck-repl/planck/issues/997)) @@ -872,7 +872,7 @@ All notable changes to this project will be documented in this file. This change ### Added - Initial release. -[Unreleased]: https://github.com/mfikes/planck/compare/2.24.0...HEAD +[2.25.0]: https://github.com/mfikes/planck/compare/2.24.0...2.25.0 [2.24.0]: https://github.com/mfikes/planck/compare/2.23.0...2.24.0 [2.23.0]: https://github.com/mfikes/planck/compare/2.22.0...2.23.0 [2.22.0]: https://github.com/mfikes/planck/compare/2.21.0...2.22.0 diff --git a/README.md b/README.md index 01f7b7ab..bc85d8de 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,6 @@ sudo script/install -p /usr # License -Planck™ copyright © 2015–2019 Mike Fikes and Contributors +Planck™ copyright © 2015–2020 Mike Fikes and Contributors Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version. diff --git a/doc/legal.md b/doc/legal.md index 9f4fa0de..b967b495 100644 --- a/doc/legal.md +++ b/doc/legal.md @@ -2,7 +2,7 @@ -Planck™ is copyright © 2015–2019 Mike Fikes and Contributors. +Planck™ is copyright © 2015–2020 Mike Fikes and Contributors. It is distributed under the Eclipse Public License either version 1.0 or (at your option) any later version. diff --git a/planck-c/globals.h b/planck-c/globals.h index 69897255..e040856b 100644 --- a/planck-c/globals.h +++ b/planck-c/globals.h @@ -1,6 +1,6 @@ // Global variables used throughout Planck -#define PLANCK_VERSION "2.24.0" +#define PLANCK_VERSION "2.25.0" // Configuration diff --git a/planck-man/planck.1 b/planck-man/planck.1 index 7542e663..9adb86ec 100644 --- a/planck-man/planck.1 +++ b/planck-man/planck.1 @@ -1,5 +1,5 @@ .\"to render: groff -Tascii -man planck-man/planck.1 > planck.man" -.TH PLANCK 1 "2019 July 25" +.TH PLANCK 1 "2020 March 22" .SH NAME plk, planck \- Planck REPL @@ -289,7 +289,7 @@ are maintained by Mike Fikes . .SH COPYRIGHT -Copyright \(co 2015-2019 Mike Fikes and Contributors. +Copyright \(co 2015-2020 Mike Fikes and Contributors. Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version. diff --git a/project.clj b/project.clj index 2d5d2f34..2226d20f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject planck "2.24.0" +(defproject planck "2.25.0" :description "Stand-alone ClojureScript REPL" :url "https://planck-repl.org" :scm {:name "git" :url "https://github.com/planck-repl/planck"}