Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Sep 26, 2021
1 parent fec1d15 commit c52bcf4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
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.3.0] - 2021-09-26

### Added

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

First release.

[Unreleased]: https://github.com/totakke/bosslint/compare/0.2.1...HEAD
[Unreleased]: https://github.com/totakke/bosslint/compare/0.3.0...HEAD
[0.3.0]: https://github.com/totakke/bosslint/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/totakke/bosslint/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/totakke/bosslint/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/totakke/bosslint/compare/b32d91e...0.1.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Bosslint

![build](https://github.com/totakke/bosslint/workflows/build/badge.svg)
![release](https://img.shields.io/badge/release-v0.2.1-blue.svg)
![release](https://img.shields.io/badge/release-v0.3.0-blue.svg)

Meta linter for easily checking

Expand All @@ -14,15 +14,15 @@ Meta linter for easily checking
### Mac OS

```console
$ curl -sSL https://github.com/totakke/bosslint/releases/download/0.2.1/bosslint_macos -o bosslint
$ curl -sSL https://github.com/totakke/bosslint/releases/download/0.3.0/bosslint_macos -o bosslint
$ chmod +x bosslint
$ mv bosslint [/your/PATH/dir/]
```

### Linux

```console
$ curl -sSL https://github.com/totakke/bosslint/releases/download/0.2.1/bosslint_linux -o bosslint
$ curl -sSL https://github.com/totakke/bosslint/releases/download/0.3.0/bosslint_linux -o bosslint
$ chmod +x bosslint
$ mv bosslint [/your/PATH/dir/]
```
Expand Down
2 changes: 1 addition & 1 deletion src/bosslint/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[io.aviso.ansi :as ansi])
(:gen-class))

(def version "0.3.0-SNAPSHOT")
(def version "0.3.0")

(defn- list-linters []
(sort-by linter/name (descendants :bosslint/linter)))
Expand Down

0 comments on commit c52bcf4

Please sign in to comment.