Skip to content

Commit e2c55af

Browse files
committed
Release version 0.13.3
1 parent 6670710 commit e2c55af

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changes
22

3+
* 0.13.3 - 19Jan2023
4+
* No functionality change again, more documentation improvements
5+
36
* 0.13.2 - 12Jan2023
47
* No functionality change, but major documentation improvements
58
* Must release a minor version since namespace metadata for cljdoc is changing.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ Contribute a fix, or a new calendar to the project - see [CONTRIBUTING.md](CONTR
4848

4949
## I want a calendar that holi doesn't have
5050

51-
Build yourself a [custom library](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.2/doc/custom-holidays), with your
51+
Build yourself a [custom library](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.3/doc/custom-holidays), with your
5252
own holiday calendars.

bin/prepare.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ sed "s|io.github.luciolucio/holi {:mvn/version \".*\"}}|io.github.luciolucio/hol
2424
mv new-deps.edn resources/holi-template/resources/deps.edn
2525

2626
print "Updating custom project instructions..."
27-
sed "s|holi/.*/new|holi/$VERSION_NUMBER/new|g" doc/04-CUSTOM.md > new-custom.md
27+
sed "s|holi/.*/new|holi/$VERSION_NUMBER/new|g" doc/04-CUSTOM.md > new-custom-1.md
28+
sed "s|holi/.*/api|holi/$VERSION_NUMBER/api|g" new-custom-1.md > new-custom.md
29+
rm new-custom-1.md
2830
mv new-custom.md doc/04-CUSTOM.md
2931

3032
print "Updating readmes..."

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns build
22
(:require [clojure.tools.build.api :as b]))
33

4-
(def version "0.13.2")
4+
(def version "0.13.3")
55

66
(def lib 'io.github.luciolucio/holi)
77
(def basis (b/create-basis {:project "deps.edn"}))

doc/01-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ on [Slack](http://clojurians.slack.com): `@Lucio Assis`
3636

3737
## Usage
3838

39-
See the [API docs](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.2/api/luciolucio.holi) for detail on holi's
39+
See the [API docs](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.3/api/luciolucio.holi) for detail on holi's
4040
utilities: `add`, `weekend?`, `holiday?`, `business-day?` and `non-business-day?`.
4141

4242
## A note on terminology

doc/04-CUSTOM.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Generate a new clojure deps project:
44

55
```
6-
curl -LO https://raw.githubusercontent.com/luciolucio/holi/0.13.2/new-holi-project.sh
6+
curl -LO https://raw.githubusercontent.com/luciolucio/holi/0.13.3/new-holi-project.sh
77
bash new-holi-project.sh
88
```
99

1010
Follow the instructions in its README to create holiday calendar files of your own and generate
11-
a jar. It will expose the [same API as holi](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.2/api/luciolucio.holi)
11+
a jar. It will expose the [same API as holi](https://cljdoc.org/d/io.github.luciolucio/holi/0.13.3/api/luciolucio.holi)
1212
but your holidays will be available instead.

new-holi-project.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828

2929
echo ""
3030
echo "Downloading template..."
31-
curl -LO https://github.com/luciolucio/holi/raw/0.13.2/resources/holi-template.zip
31+
curl -LO https://github.com/luciolucio/holi/raw/0.13.3/resources/holi-template.zip
3232

3333
echo ""
3434
echo "Decompressing template..."

resources/holi-template.zip

-1 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:paths ["src"]
22
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
3-
io.github.luciolucio/holi {:mvn/version "0.13.2"}}
3+
io.github.luciolucio/holi {:mvn/version "0.13.3"}}
44
:aliases {:build {:extra-deps {io.github.clojure/tools.build {:git/tag "v0.8.3" :git/sha "0d20256"}}
55
:ns-default build}
66
:generate {:main-opts ["-m" "luciolucio.holi.generate"]}}}

0 commit comments

Comments
 (0)