Skip to content

Commit fdfb3a8

Browse files
committed
fix #186; prep for 0.9.2
Signed-off-by: Sean Corfield <[email protected]>
1 parent 706ba33 commit fdfb3a8

File tree

6 files changed

+51
-3828
lines changed

6 files changed

+51
-3828
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
build-clj:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: "Setup Java 17"
17-
uses: actions/setup-java@v3
17+
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
2020
java-version: '17'
2121
- name: Setup Clojure
22-
uses: DeLaGuardo/setup-clojure@12.1
22+
uses: DeLaGuardo/setup-clojure@12.3
2323
with:
24-
lein: 2.10.0
24+
lein: 2.11.1
2525
- name: Cache dependencies
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.m2/repository
2929
key: "m2-${{ hashFiles('project.clj') }}"

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CHANGES
2+
3+
0.9.2 -- 01-31-2024
4+
* Add `:meta` support to address [#186](https://github.com/clj-commons/marginalia/issues/186).
5+
* Update all dependencies.
6+
7+
0.9.1 -- 11-08-2017
8+
* Update to Clojure 1.9.0.
9+
10+
0.9.0 -- 03-16-2016
11+
* Bug fixes & documentation updates.
12+
13+
0.8.0 -- 08-28-2014
14+
* Improve ClojureScript support, bug fixes, and documentation updates.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Marginalia 0.9.1
1+
Marginalia 0.9.2
22
================
33

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

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

16-
**[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)**
16+
**[View the release notes for this version of Marginalia](https://github.com/clj-commons/marginalia/releases/tag/v0.9.2)**
1717

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

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

29-
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`.
30-
With Leiningen 2.x, add `[[lein-marginalia "0.9.1"]]` to the `:plugins` entry in either your project.clj file or your `:user` profile.
29+
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`.
30+
With Leiningen 2.x, add `[[lein-marginalia "0.9.2"]]` to the `:plugins` entry in either your project.clj file or your `:user` profile.
3131
See the [lein-marginalia](https://github.com/clj-commons/lein-marginalia) page for more details.
3232

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

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

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

0 commit comments

Comments
 (0)