Skip to content

Commit

Permalink
fix #186; prep for 0.9.2
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <sean@corfield.org>
  • Loading branch information
seancorfield committed Feb 1, 2024
1 parent 706ba33 commit fdfb3a8
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 3,828 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -12,18 +12,18 @@ jobs:
build-clj:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "Setup Java 17"
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@12.1
uses: DeLaGuardo/setup-clojure@12.3
with:
lein: 2.10.0
lein: 2.11.1
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: "m2-${{ hashFiles('project.clj') }}"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,14 @@
# CHANGES

0.9.2 -- 01-31-2024
* Add `:meta` support to address [#186](https://github.com/clj-commons/marginalia/issues/186).
* Update all dependencies.

0.9.1 -- 11-08-2017
* Update to Clojure 1.9.0.

0.9.0 -- 03-16-2016
* Bug fixes & documentation updates.

0.8.0 -- 08-28-2014
* Improve ClojureScript support, bug fixes, and documentation updates.
10 changes: 5 additions & 5 deletions README.md
@@ -1,4 +1,4 @@
Marginalia 0.9.1
Marginalia 0.9.2
================

[![Clojars Project](https://img.shields.io/clojars/v/marginalia.svg)](https://clojars.org/marginalia)
Expand All @@ -13,7 +13,7 @@ Marginalia is a source code documentation tool that parses Clojure and ClojureSc

To get a quick look at what the Marginalia output looks like, [visit the official site](https://clj-commons.org/marginalia/).

**[View the release notes for this version of Marginalia](https://github.com/clj-commons/marginalia/blob/master/docs/release-notes/marginalia-v0.9.1-release-notes.markdown)**
**[View the release notes for this version of Marginalia](https://github.com/clj-commons/marginalia/releases/tag/v0.9.2)**

Usage
-----
Expand All @@ -26,8 +26,8 @@ Currently Marginalia can be used in a number of ways as described below.

To use Marginalia with Leiningen add the following code to the project's `project.clj` file:

With Leiningen 1.x, add `[lein-marginalia "0.9.1"]` to your project.clj's `:dev-dependencies` argument of the `defproject` function, then run `lein deps`.
With Leiningen 2.x, add `[[lein-marginalia "0.9.1"]]` to the `:plugins` entry in either your project.clj file or your `:user` profile.
With Leiningen 1.x, add `[lein-marginalia "0.9.2"]` to your project.clj's `:dev-dependencies` argument of the `defproject` function, then run `lein deps`.
With Leiningen 2.x, add `[[lein-marginalia "0.9.2"]]` to the `:plugins` entry in either your project.clj file or your `:user` profile.
See the [lein-marginalia](https://github.com/clj-commons/lein-marginalia) page for more details.

Once installed, you can generate your complete source documentation with the command:
Expand Down Expand Up @@ -132,6 +132,6 @@ If I've missed your name then please ping me.
License
-------

Copyright (C) 2010-2017 Gary, Fogus and contributors.
Copyright (C) 2010-2024 Sean Corfield, Gary Deer, Fogus and contributors.

Distributed under the Eclipse Public License, the same as Clojure.

0 comments on commit fdfb3a8

Please sign in to comment.