Skip to content

Commit ee6a3df

Browse files
authored
Merge pull request #226 from bombaywalla/release-0.6.3
Prepare for release 0.6.3
2 parents 447998c + e403214 commit ee6a3df

File tree

2 files changed

+62
-3
lines changed

2 files changed

+62
-3
lines changed

CHANGELOG.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this
4+
file. This change log follows the conventions of
5+
[keepachangelog.com](http://keepachangelog.com/), with the addition of
6+
sections for `Highlights`, `Breaking` and `Changes since x.y.z`.
7+
8+
## [Unreleased]
9+
10+
## [0.6.3] - 2020-12-07
11+
12+
### Highlights
13+
- Allow fast compilation of changed files only. Opt-in. Requires
14+
`cryogen-core` version `0.4.0`.
15+
- Support the use of `tools.deps` (aka clojure CLI) in addition to `lein`.
16+
17+
### Changes since 0.6.2
18+
- [#226](https://github.com/cryogen-project/cryogen/pull/226) Prepare for release 0.6.3 (bombaywalla)
19+
- [#225](https://github.com/cryogen-project/cryogen/pull/225) git-ignore lotus' sass-generated files (devurandom)
20+
- [#221](https://github.com/cryogen-project/cryogen/pull/221) Support for deps tools instead of lein (holyjak)
21+
- [#220](https://github.com/cryogen-project/cryogen/pull/220) Support for incremental compilation (holyjak)
22+
23+
## [0.6.2] - 2020-10-16
24+
25+
### Highlights
26+
- Update to new version of the Markup protocol that allows for
27+
multiple file extensions for a particular markup.
28+
29+
### Breaking
30+
- Requires latest versions of `cryogen-asciidoc` (at least 0.3.2),
31+
`cryogen-flexmark` (at least 0.1.4), and `cryogen-markdown` (at
32+
least 0.1.13).
33+
34+
### Changes since 0.6.1
35+
- [#217](https://github.com/cryogen-project/cryogen/pull/217) Update README.md to current year (hewrin)
36+
- [#216](https://github.com/cryogen-project/cryogen/pull/216) Fix typo in QuickStart template content (daemianmack)
37+
- [#213](https://github.com/cryogen-project/cryogen/pull/213) Use Markup protocol defined in cryogen-core.markup (darth10)
38+
39+
## [0.6.1] - 2020-03-10
40+
41+
### Highlights
42+
- Update versions of `cryogen-core` and `cryogen-flexmark`.
43+
44+
### Changes since 0.6.0
45+
- [#206](https://github.com/cryogen-project/cryogen/pull/206) README: cryogen-markdown => cryogen-flexmark (daemianmack)
46+
47+
## [0.6.0] - 2020-01-20
48+
49+
### Highlights
50+
- Switch to `cryogen-flexmark`.
51+
- Handle case where `blog-prefix` is blank.
52+
53+
[Unreleased]: https://github.com/cryogen-project/cryogen/compare/0.6.3...HEAD
54+
55+
[0.6.3]: https://github.com/cryogen-project/cryogen/compare/0.6.2...0.6.3
56+
[0.6.2]: https://github.com/cryogen-project/cryogen/compare/0.6.1...0.6.2
57+
[0.6.1]: https://github.com/cryogen-project/cryogen/compare/0.6.0...0.6.1
58+
[0.6.0]: https://github.com/cryogen-project/cryogen/compare/0.1.0...0.6.0
59+

project.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject cryogen/lein-template "0.6.2"
1+
(defproject cryogen/lein-template "0.6.3"
22
:description "A Leiningen template for the Cryogen static site generator"
33
:url "https://github.com/cryogen-project/cryogen"
44
:license {:name "Eclipse Public License"
@@ -7,10 +7,10 @@
77
:url "https://github.com/cryogen-project/cryogen.git"}
88
:dependencies [[org.clojure/core.unify "0.5.7"]
99
[org.clojure/core.contracts "0.0.6"]
10-
[leinjacker "0.4.2"
10+
[leinjacker "0.4.3"
1111
:exclusions [org.clojure/clojure
1212
org.clojure/core.contracts
1313
org.clojure/core.unify]]
14-
[org.clojure/tools.namespace "0.2.11"
14+
[org.clojure/tools.namespace "1.1.0"
1515
:exclusions [org.clojure/clojure]]]
1616
:eval-in-leiningen true)

0 commit comments

Comments
 (0)