Skip to content

Commit 16a1e32

Browse files
committed
v2.0.0
1 parent 65ab22f commit 16a1e32

27 files changed

+272
-57
lines changed

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
haiti-hash (1.5.0)
4+
haiti-hash (2.0.0)
55
docopt (~> 0.6)
66
paint (~> 2.2)
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A CLI tool (and library) to identify hash types (hash type identifier).
2626

2727
## Features
2828

29-
- 519+ hash types detected
29+
- 632+ hash types detected
3030
- Modern algorithms supported (SHA3, Keccak, Blake2, etc.)
3131
- Hashcat and John the Ripper references
3232
- CLI tool & library

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
version: '3'
33
services:
44
haiti:
5-
image: noraj/haiti:1.5.0
5+
image: noraj/haiti:2.0.0
66
user: noraj
77
container_name: haiti
88
read_only: false
99
build:
1010
context: .
1111
dockerfile: Dockerfile
1212
args:
13-
HAITI_VERSION: 1.5.0
13+
HAITI_VERSION: 2.0.0

docs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## [unreleased]
22

3+
## [2.0.0]
4+
35
- **Breaking changes**:
46
- **Drop** Ruby 2.5 support, [EOL since 05/04/2021](https://www.ruby-lang.org/en/downloads/branches/) and not supported by Rubocop since [1.29.0](https://github.com/rubocop/rubocop/releases/tag/v1.29.0)
57
- **Drop** Ruby 2.6 support, [EOL since 12/04/2021](https://www.ruby-lang.org/en/downloads/branches/) and not supported by Rubocop since [1.51.0](https://github.com/rubocop/rubocop/releases/tag/v1.51.0)

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A CLI tool (and library) to identify hash types (hash type identifier).
1616

1717
## Features
1818

19-
- 519+ hash types detected
19+
- 632+ hash types detected
2020
- Modern algorithms supported (SHA3, Keccak, Blake2, etc.)
2121
- Hashcat and John the Ripper references
2222
- CLI tool & library

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
> _**HA**sh **I**den**T**if**I**er_
66
7-
- 519+ hash types detected
7+
- 632+ hash types detected
88
- Modern algorithms supported (SHA3, Keccak, Blake2, etc.)
99
- Hashcat and John the Ripper references
1010
- CLI tool & library

docs/pages/install.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ $ git clone https://github.com/noraj/haiti.git
7878
$ cd haiti
7979
$ docker-compose build
8080
# alternatively without docker compose
81-
$ docker build -f Dockerfile -t haiti:1.5.0 --build-arg HAITI_VERSION=1.5.0 .
81+
$ docker build -f Dockerfile -t haiti:2.0.0 --build-arg HAITI_VERSION=2.0.0 .
8282
```
8383

8484
Usage examples:
@@ -98,7 +98,7 @@ host: `docker.io`
9898
$ docker pull noraj/haiti
9999
100100
# specific tag
101-
$ docker pull noraj/haiti:1.5.0
101+
$ docker pull noraj/haiti:2.0.0
102102
```
103103

104104
Usage examples:
@@ -120,7 +120,7 @@ host: `ghcr.io`
120120
$ docker pull ghcr.io/noraj/haiti
121121
122122
# specific tag
123-
$ docker pull ghcr.io/noraj/haiti:1.5.0
123+
$ docker pull ghcr.io/noraj/haiti:2.0.0
124124
```
125125

126126
Usage examples:
@@ -142,7 +142,7 @@ host: `registry-intl.eu-central-1.aliyuncs.com`
142142
$ docker pull registry-intl.eu-central-1.aliyuncs.com/noraj/haiti
143143
144144
# specific tag
145-
$ docker pull registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:1.5.0
145+
$ docker pull registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:2.0.0
146146
```
147147

148148
Usage examples:
@@ -162,7 +162,7 @@ host: `quay.io`
162162
$ docker pull quay.io/noraj/haiti
163163
164164
# specific tag
165-
$ docker pull quay.io/noraj/haiti:1.5.0
165+
$ docker pull quay.io/noraj/haiti:2.0.0
166166
```
167167

168168
Usage examples:

docs/pages/publishing.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Publishing
22

3+
Edit the new version number in:
4+
5+
- `lib/haiti/version.rb`
6+
- `man/haiti.ronn`
7+
- `docker-compose.yml`
8+
- `docs/pages/install.md`
9+
- `docs/pages/publishing.md`
10+
- search for others
11+
312
Be sure all **tests** pass!
413

514
```
@@ -40,7 +49,7 @@ $ bundle exec rake create_manpage
4049
Create an **annotated git tag**:
4150

4251
```
43-
$ git tag -a v1.5.0
52+
$ git tag -a v2.0.0
4453
```
4554

4655
Push the changes including the tags:
@@ -60,7 +69,7 @@ $ bundle exec rake build
6069
Push the new gem release on **RubyGems** See https://guides.rubygems.org/publishing/.
6170

6271
```
63-
$ gem push haiti-hash-1.5.0.gem
72+
$ gem push haiti-hash-2.0.0.gem
6473
```
6574

6675
## Docker container registries
@@ -70,7 +79,7 @@ $ gem push haiti-hash-1.5.0.gem
7079
### **Docker Hub**
7180

7281
```
73-
$ export HAITI_VERSION=1.5.0
82+
$ export HAITI_VERSION=2.0.0
7483
$ docker build -f Dockerfile -t noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
7584
$ docker build -f Dockerfile -t noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
7685
@@ -86,7 +95,7 @@ $ docker push docker.io/noraj/haiti:latest
8695
GHCR = Github Container Registry
8796

8897
```
89-
$ export HAITI_VERSION=1.5.0
98+
$ export HAITI_VERSION=2.0.0
9099
$ docker build -f Dockerfile -t ghcr.io/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
91100
$ docker build -f Dockerfile -t ghcr.io/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
92101
@@ -103,7 +112,7 @@ $ docker push ghcr.io/noraj/haiti:latest
103112
ACR = Alibaba Cloud Container Registry
104113

105114
```
106-
$ export HAITI_VERSION=1.5.0
115+
$ export HAITI_VERSION=2.0.0
107116
$ docker build -f Dockerfile -t registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
108117
$ docker build -f Dockerfile -t registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
109118
@@ -117,7 +126,7 @@ $ docker push registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:latest
117126
### **Quay.io**
118127

119128
```
120-
$ export HAITI_VERSION=1.5.0
129+
$ export HAITI_VERSION=2.0.0
121130
$ docker build -f Dockerfile -t quay.io/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
122131
$ docker build -f Dockerfile -t quay.io/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
123132

docs/pages/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
```
66
$ haiti -h
7-
HAITI (HAsh IdenTifIer) v1.5.0
7+
HAITI (HAsh IdenTifIer) v2.0.0
88
99
Usage:
1010
haiti [options] list

0 commit comments

Comments
 (0)