Skip to content

Commit f1dda5f

Browse files
committed
feat(release-notes): notes // docx for new release
1 parent b062793 commit f1dda5f

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

.github/releaser.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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"

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

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+
521
## [0.1.7] - 2023-09-26
622

23+
### Features
24+
25+
- Updated docx for new (v0.1.7) release
26+
727
### Miscellaneous Tasks
828

929
- Fixed cargo installation method, closes #18

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hxn"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
authors = [ "PwnWriter < [email protected] >" ]
66
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."

0 commit comments

Comments
 (0)