Skip to content

Commit 7a12846

Browse files
committed
Release 0.14.0
1 parent 89c1af6 commit 7a12846

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changes
22

3-
* UNRELEASED
4-
* Date lists are now about 55% smaller. Great for the bundle, and it also links dates and holiday names
3+
* 0.14.0
4+
* Date lists are now about 55% smaller - great for js bundles. They also link dates and holiday names now
55
* Added a new API function to list holidays
66

77
* 0.13.3 - 19Jan2023

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.3/doc/custom-holidays), with your
51+
Build yourself a [custom library](https://cljdoc.org/d/io.github.luciolucio/holi/0.14.0/doc/custom-holidays), with your
5252
own holiday calendars.

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.3")
4+
(def version "0.14.0")
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.3/api/luciolucio.holi) for detail on holi's
39+
See the [API docs](https://cljdoc.org/d/io.github.luciolucio/holi/0.14.0/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.3/new-holi-project.sh
6+
curl -LO https://raw.githubusercontent.com/luciolucio/holi/0.14.0/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.3/api/luciolucio.holi)
11+
a jar. It will expose the [same API as holi](https://cljdoc.org/d/io.github.luciolucio/holi/0.14.0/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.3/resources/holi-template.zip
31+
curl -LO https://github.com/luciolucio/holi/raw/0.14.0/resources/holi-template.zip
3232

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

resources/holi-template.zip

17 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.3"}}
3+
io.github.luciolucio/holi {:mvn/version "0.14.0"}}
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)