File tree 3 files changed +34
-1
lines changed
3 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ # Trigger release action on new release
4
+
5
+ if [ -z " $1 " ]; then
6
+ echo " Please provide a version number."
7
+ exit 1
8
+ fi
9
+
10
+ version=$1
11
+
12
+ git tag " v$version "
13
+ git push origin " v$version "
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 0.1.8] - 2023-10-17
6
+
7
+ ### Features
8
+
9
+ - Bug-report,feature req templates
10
+
11
+ ### Miscellaneous Tasks
12
+
13
+ - Bump clap from 4.4.4 to 4.4.5
14
+ - Bump clap from 4.4.5 to 4.4.6
15
+ - Bump chromiumoxide from 0.5.1 to 0.5.3
16
+ - Bump tokio from 1.32.0 to 1.33.0
17
+ - Bump chromiumoxide from 0.5.3 to 0.5.4
18
+ - Bump reqwest from 0.11.20 to 0.11.22
19
+ - Print no title if url doesn't have one // closes #30
20
+
5
21
## [ 0.1.7] - 2023-09-26
6
22
23
+ ### Features
24
+
25
+ - Updated docx for new (v0.1.7) release
26
+
7
27
### Miscellaneous Tasks
8
28
9
29
- Fixed cargo installation method, closes #18
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " hxn"
3
- version = " 0.1.7 "
3
+ version = " 0.1.8 "
4
4
edition = " 2021"
5
5
authors = [
" PwnWriter < [email protected] >" ]
6
6
description = " Blazingly fast tool to grab screenshots of url/webpages from terminal."
You can’t perform that action at this time.
0 commit comments