Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Feb 12, 2024
1 parent a506b6a commit 0a5f1da
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,3 @@ jobs:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}
run: lein deploy snapshots

5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.7.0] - 2024-02-12

### Changed

Expand Down Expand Up @@ -207,7 +207,8 @@

First release.

[Unreleased]: https://github.com/totakke/cavia/compare/0.6.2...HEAD
[Unreleased]: https://github.com/totakke/cavia/compare/0.7.0...HEAD
[0.7.0]: https://github.com/totakke/cavia/compare/0.6.2...0.7.0
[0.6.2]: https://github.com/totakke/cavia/compare/0.6.1...0.6.2
[0.6.1]: https://github.com/totakke/cavia/compare/0.6.0...0.6.1
[0.6.0]: https://github.com/totakke/cavia/compare/0.5.1...0.6.0
Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,24 @@ be directly used in a project and source codes. Cavia downloads test resources
from remotes, checks their hash before tests, and provides convenience
functions to access the resources.

## NOTICE

The OSS license of Cavia was changed to the [MIT License](LICENSE) since v0.7.0.

## Installation

Cavia is available as a Maven artifact from [Clojars](http://clojars.org/cavia).

Clojure CLI/deps.edn:

```clojure
cavia/cavia {:mvn/version "0.6.2"}
cavia/cavia {:mvn/version "0.7.0"}
```

Leiningen/Boot:

```clojure
[cavia "0.6.2"]
[cavia "0.7.0"]
```

## Basic usage
Expand Down Expand Up @@ -116,11 +120,13 @@ macro.
(cavia/get!))
```

`get!` and other functions output progress and logs' print to stdout. To call
the above functions quietly, use `without-print` macro.
`get!` and other functions output logs and download progress to stdout. To call
the above functions quietly, use `with-verbosity` macro. For example, the
following code suppresses normal messages but displays download progress.

```clojure
(without-print
(with-verbosity {:message false
:progress true}
(cavia/get! prof))
```

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject cavia "0.7.0-SNAPSHOT"
(defproject cavia "0.7.0"
:description "Remote resource management for Clojure projects"
:url "https://github.com/totakke/cavia"
:license {:name "The MIT License"
Expand Down

0 comments on commit 0a5f1da

Please sign in to comment.