Skip to content

Commit 45d7098

Browse files
committed
prepare v2.1.0
1 parent a258f61 commit 45d7098

27 files changed

+56
-64
lines changed

Gemfile.lock

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

@@ -13,11 +13,9 @@ GEM
1313
base64 (0.1.1)
1414
commonmarker (0.23.10)
1515
docopt (0.6.1)
16-
hpricot (0.8.6)
1716
json (2.6.3)
1817
language_server-protocol (3.17.0.3)
1918
minitest (5.20.0)
20-
mustache (1.1.1)
2119
paint (2.3.0)
2220
parallel (1.23.0)
2321
parser (3.2.2.3)
@@ -26,13 +24,8 @@ GEM
2624
racc (1.7.1)
2725
rainbow (3.1.1)
2826
rake (13.0.6)
29-
rdiscount (2.2.7.1)
3027
regexp_parser (2.8.1)
3128
rexml (3.2.6)
32-
ronn (0.7.3)
33-
hpricot (>= 0.8.2)
34-
mustache (>= 0.7.0)
35-
rdiscount (>= 1.5.8)
3629
rubocop (1.56.3)
3730
base64 (~> 0.1.1)
3831
json (~> 2.3)
@@ -63,7 +56,6 @@ DEPENDENCIES
6356
minitest (~> 5.18)
6457
paint (~> 2.3)
6558
rake (~> 13.0)
66-
ronn (>= 0.7.3)
6759
rubocop (~> 1.50)
6860
yard (>= 0.9.27, < 0.10)
6961

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:2.0.0
5+
image: noraj/haiti:2.1.0
66
user: noraj
77
container_name: haiti
88
read_only: false
99
build:
1010
context: .
1111
dockerfile: Dockerfile
1212
args:
13-
HAITI_VERSION: 2.0.0
13+
HAITI_VERSION: 2.1.0

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:2.0.0 --build-arg HAITI_VERSION=2.0.0 .
81+
$ docker build -f Dockerfile -t haiti:2.1.0 --build-arg HAITI_VERSION=2.1.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:2.0.0
101+
$ docker pull noraj/haiti:2.1.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:2.0.0
123+
$ docker pull ghcr.io/noraj/haiti:2.1.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:2.0.0
145+
$ docker pull registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:2.1.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:2.0.0
165+
$ docker pull quay.io/noraj/haiti:2.1.0
166166
```
167167

168168
Usage examples:

docs/pages/publishing.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Edit the new version number in:
44

55
- `lib/haiti/version.rb`
6-
- `man/haiti.ronn`
6+
- `man/haiti.adoc` (and other man pages)
77
- `docker-compose.yml`
88
- `docs/pages/install.md`
99
- `docs/pages/publishing.md`
@@ -49,7 +49,7 @@ $ bundle exec rake man
4949
Create an **annotated git tag**:
5050

5151
```
52-
$ git tag -a v2.0.0
52+
$ git tag -a v2.1.0
5353
```
5454

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

7171
```
72-
$ gem push haiti-hash-2.0.0.gem
72+
$ gem push haiti-hash-2.1.0.gem
7373
```
7474

7575
## Docker container registries
@@ -79,7 +79,7 @@ $ gem push haiti-hash-2.0.0.gem
7979
### **Docker Hub**
8080

8181
```
82-
$ export HAITI_VERSION=2.0.0
82+
$ export HAITI_VERSION=2.1.0
8383
$ docker build -f Dockerfile -t noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
8484
$ docker build -f Dockerfile -t noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
8585
@@ -95,7 +95,7 @@ $ docker push docker.io/noraj/haiti:latest
9595
GHCR = Github Container Registry
9696

9797
```
98-
$ export HAITI_VERSION=2.0.0
98+
$ export HAITI_VERSION=2.1.0
9999
$ docker build -f Dockerfile -t ghcr.io/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
100100
$ docker build -f Dockerfile -t ghcr.io/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
101101
@@ -112,7 +112,7 @@ $ docker push ghcr.io/noraj/haiti:latest
112112
ACR = Alibaba Cloud Container Registry
113113

114114
```
115-
$ export HAITI_VERSION=2.0.0
115+
$ export HAITI_VERSION=2.1.0
116116
$ docker build -f Dockerfile -t registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
117117
$ docker build -f Dockerfile -t registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
118118
@@ -126,7 +126,7 @@ $ docker push registry-intl.eu-central-1.aliyuncs.com/noraj/haiti:latest
126126
### **Quay.io**
127127

128128
```
129-
$ export HAITI_VERSION=2.0.0
129+
$ export HAITI_VERSION=2.1.0
130130
$ docker build -f Dockerfile -t quay.io/noraj/haiti:$HAITI_VERSION --build-arg HAITI_VERSION=$HAITI_VERSION .
131131
$ docker build -f Dockerfile -t quay.io/noraj/haiti:latest --build-arg HAITI_VERSION=$HAITI_VERSION .
132132

docs/pages/usage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Main binary: identify hash types, list types and samples.
1010

1111
```
1212
$ haiti -h
13-
HAITI (HAsh IdenTifIer) v2.0.0
13+
HAITI (HAsh IdenTifIer) v2.1.0
1414
1515
Usage:
1616
haiti [options] list
@@ -58,7 +58,7 @@ Wrapper for Hashcat where you can select the mode using haiti and fzf.
5858

5959
```
6060
$ hashcat-haiti -h
61-
HAITI (HAsh IdenTifIer) v2.0.0
61+
HAITI (HAsh IdenTifIer) v2.1.0
6262
6363
Usage:
6464
hashcat-haiti [options] <hash> -- <hashcat_options>...
@@ -92,7 +92,7 @@ Wrapper for John the Ripper where you can select the format using haiti and fzf.
9292

9393
```
9494
$ john-haiti -h
95-
HAITI (HAsh IdenTifIer) v2.0.0
95+
HAITI (HAsh IdenTifIer) v2.1.0
9696
9797
Usage:
9898
john-haiti [options] <hash> -- <john_options>...
@@ -128,7 +128,7 @@ Note: mostly useful for `hashcat-haiti` and `john-haiti` or building another bin
128128

129129
```
130130
$ haiti-fzf -h
131-
HAITI (HAsh IdenTifIer) v2.0.0
131+
HAITI (HAsh IdenTifIer) v2.1.0
132132
133133
Usage:
134134
haiti-fzf hc [options] <hash>
@@ -167,7 +167,7 @@ Note: mostly useful for `haiti-fzf` or building another binary or alias.
167167

168168
```
169169
$ haiti-parsable -h
170-
HAITI (HAsh IdenTifIer) v2.0.0
170+
HAITI (HAsh IdenTifIer) v2.1.0
171171
172172
Usage:
173173
haiti-parsable hc [options] <hash>

docs/yard/HashIdentifier.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ <h3 class="signature " id="samples-class_method">
788788
</div>
789789

790790
<div id="footer">
791-
Generated on Sat Oct 28 17:53:39 2023 by
791+
Generated on Sun Nov 12 17:03:44 2023 by
792792
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
793793
0.9.34 (ruby-3.2.2).
794794
</div>

docs/yard/HashIdentifier/Chf.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ <h3 class="signature " id="samples-instance_method">
656656
</div>
657657

658658
<div id="footer">
659-
Generated on Sat Oct 28 17:53:39 2023 by
659+
Generated on Sun Nov 12 17:03:44 2023 by
660660
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
661661
0.9.34 (ruby-3.2.2).
662662
</div>

docs/yard/Version.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h2>
100100
<dt id="VERSION-constant" class="">VERSION =
101101

102102
</dt>
103-
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.0.0</span><span class='tstring_end'>&#39;</span></span></pre></dd>
103+
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.1.0</span><span class='tstring_end'>&#39;</span></span></pre></dd>
104104

105105
</dl>
106106

@@ -116,7 +116,7 @@ <h2>
116116
</div>
117117

118118
<div id="footer">
119-
Generated on Sat Oct 28 17:53:39 2023 by
119+
Generated on Sun Nov 12 17:03:44 2023 by
120120
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121121
0.9.34 (ruby-3.2.2).
122122
</div>

docs/yard/_index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ <h2>Namespace Listing A-Z</h2>
128128
</div>
129129

130130
<div id="footer">
131-
Generated on Sat Oct 28 17:53:39 2023 by
131+
Generated on Sun Nov 12 17:03:44 2023 by
132132
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
133133
0.9.34 (ruby-3.2.2).
134134
</div>

docs/yard/file.LICENSE.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
<div class="clear"></div>
5858
</div>
5959

60-
<div id="content"><div id='filecontents'>The MIT License (MIT)<br/><br/>Copyright (c) 2020-2022 Alexandre ZANNI (independent)<br/>Copyright (c) 2019-2020 Alexandre ZANNI at Orange Cyberdefense<br/><br/>Permission is hereby granted, free of charge, to any person obtaining a copy<br/>of this software and associated documentation files (the &quot;Software&quot;), to deal<br/>in the Software without restriction, including without limitation the rights<br/>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell<br/>copies of the Software, and to permit persons to whom the Software is<br/>furnished to do so, subject to the following conditions:<br/><br/>The above copyright notice and this permission notice shall be included in<br/>all copies or substantial portions of the Software.<br/><br/>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br/>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br/>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE<br/>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br/>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,<br/>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN<br/>THE SOFTWARE.</div></div>
60+
<div id="content"><div id='filecontents'>The MIT License (MIT)<br/><br/>Copyright (c) 2020-2023 Alexandre ZANNI (independent)<br/>Copyright (c) 2019-2020 Alexandre ZANNI at Orange Cyberdefense<br/><br/>Permission is hereby granted, free of charge, to any person obtaining a copy<br/>of this software and associated documentation files (the &quot;Software&quot;), to deal<br/>in the Software without restriction, including without limitation the rights<br/>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell<br/>copies of the Software, and to permit persons to whom the Software is<br/>furnished to do so, subject to the following conditions:<br/><br/>The above copyright notice and this permission notice shall be included in<br/>all copies or substantial portions of the Software.<br/><br/>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br/>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br/>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE<br/>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br/>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,<br/>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN<br/>THE SOFTWARE.</div></div>
6161

6262
<div id="footer">
63-
Generated on Sat Oct 28 17:53:39 2023 by
63+
Generated on Sun Nov 12 17:03:44 2023 by
6464
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
6565
0.9.34 (ruby-3.2.2).
6666
</div>

0 commit comments

Comments
 (0)