Skip to content

Commit

Permalink
Release 0.2.5, fixes #71
Browse files Browse the repository at this point in the history
Built with Java 11 to work in more modern environments. Also updated
many dependencies, some copyright dates, and fixed some instructions
and small lint issues.

Release 0.2.5, fixes #71

Built with Java 11 to work in more modern environments. Also updated
many dependencies, some copyright dates, and fixed some instructions
and small lint issues.
  • Loading branch information
brunchboy committed Jan 13, 2022
1 parent fa5e230 commit 16dce77
Show file tree
Hide file tree
Showing 9 changed files with 5,971 additions and 47 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/classes
/doc/build
/gh-pages
/node_modules
/pom.xml
/pom.xml.asc
/research
Expand All @@ -22,4 +23,4 @@ logs/*.log*
*.iws

# Local Netlify folder
.netlify
.netlify
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This change log follows the conventions of

## [Unreleased][unreleased]

Nothing so far.

## [0.2.5] - 2022-01-12

### Fixed

- The built-in converter for QLC+ fixture definitions (`.qxf` files)
Expand Down Expand Up @@ -672,7 +676,8 @@ This change log follows the conventions of
- Initial Public Release


[unreleased]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.4...HEAD
[unreleased]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.5...HEAD
[0.2.5]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.4...v0.2.5
[0.2.4]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/Deep-Symmetry/afterglow/compare/v0.2.1...v0.2.2
Expand Down
21 changes: 12 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ one, I recommend installing a current version of the
> Starting with version 0.2.5, you also need to have
> [Antora](https://antora.org) installed because it is used to build
> the embedded copy of the User Guide when building and running from
> source. If you are impatient to get started without doing that, you
> can temporarily comment out the section of `project.clj` that does
> this. Add a semicolon to the `:prep-tasks` line so that it looks
> like this:
> source. Assuming you have a current version of `node` installed,
> simply running `npm i` inside the top level directory of the
> afterglow project will install Antora for you. If you don't have a
> node environment and are impatient to get started without getting
> one, you can temporarily comment out the section of `project.clj`
> that builds the user guide. Add `#_` to the `:prep-tasks`
> line so that it looks like this:
>
> ` :prep-tasks [ ; ["shell" "antora" "doc/embedded.yml"]`
> ` :prep-tasks [#_["shell" "npx" "antora" "--fetch" "doc/embedded.yml"`
>
> But keep in mind that if you do this, the built-in user guide will
> not work, and you will not be able to create a release-worthy build
Expand All @@ -44,9 +47,9 @@ opening a terminal window inside your clone of the project, and typing
the User Guide is generated by Antora and the images are copied in,
and then Clojure will start, with output similar to this:

REPL-y 0.4.3, nREPL 0.6.0
Clojure 1.10.1
OpenJDK 64-Bit Server VM 11.0.5+10-LTS
REPL-y 0.5.1, nREPL 0.8.3
Clojure 1.10.3
OpenJDK 64-Bit Server VM 11.0.10+9-LTS
afterglow loaded.
afterglow.examples=>

Expand Down Expand Up @@ -84,7 +87,7 @@ Afterglow is primarily maintained by [@brunchboy][brunchboy].
<a href="http://deepsymmetry.org"><img style="float:right" alt="Deep Symmetry"
src="doc/modules/ROOT/assets/images/DS-logo-bw-200-padded-left.png" width="216" height="123"></a>

Copyright © 2016&ndash;2019 [Deep Symmetry, LLC](http://deepsymmetry.org)
Copyright © 2016&ndash;2022 [Deep Symmetry, LLC](http://deepsymmetry.org)

Distributed under the
[Eclipse Public License 2.0](https://opensource.org/licenses/EPL-2.0)
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -690,9 +690,7 @@ Here is the set of tasks needed to cut a new release:
scripts/prepare_release.sh v0.2.0`.
- [ ] Build both versions of the codox documentation, with the release
project version and tagged source and documentation links: `lein
repl` will do the trick. (Perhaps no longer relevant! But look into
changing to use the Beat Link Trigger approach of versioning builds
that no longer rely on lein-env.)
repl` will do the trick.
- [ ] Update [`CHANGELOG.md`](CHANGELOG.md) to reflect the release:
make sure nothing is missing, and rename the sections to reflect the
fact that the unreleased code is now released, and there is nothing
Expand Down Expand Up @@ -1043,7 +1041,7 @@ though.
src="doc/modules/ROOT/assets/images/DS-logo-bw-200-padded-left.png"
width="216" height="123">

Copyright © 2015-2020 [Deep Symmetry, LLC](http://deepsymmetry.org)
Copyright © 2015-2022 [Deep Symmetry, LLC](http://deepsymmetry.org)

Distributed under the [Eclipse Public License
2.0](https://opensource.org/licenses/EPL-2.0). By using this software
Expand Down
2 changes: 1 addition & 1 deletion doc/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ asciidoc:
attributes:
icons: font
experimental: ''
page-copyright: 2015–2020
page-copyright: 2015–2022
page-pagination: ''
nav:
- modules/ROOT/nav.adoc
Loading

0 comments on commit 16dce77

Please sign in to comment.