Skip to content

Commit f1b13b9

Browse files
committed
feat(release-notes): preparing for new [v0.1.9] release
1 parent 08dc374 commit f1b13b9

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

.github/workflows/bench.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,22 @@ jobs:
2121
export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.cargo}"
2222
export RUSTUP_HOME="${XDG_DATA_HOME:-$HOME/.rustup}"
2323
export GOPATH="${XDG_DATA_HOME:-$HOME/.go}"
24-
export PATH="$PATH:$HOME/.cargo/bin:$HOME/.go/bin"
24+
export PATH="$PATH:$HOME/.cargo/bin"
25+
export PATH="$PATH:$HOME/.go/bin"
2526
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
2627
2728
- name: Install hyperfine
2829
run: cargo install hyperfine
2930

3031
- name: Install gowitness
31-
run: go install github.com/sensepost/gowitness@latest
32+
run: |
33+
go install github.com/sensepost/gowitness@latest
34+
which gowitness || gowitness_path=$(find / -type f -name "gowitness" 2>/dev/null)
35+
mv "$gowitness_path" /usr/local/bin/gowitness
3236
3337
- name: Get 100 URLs
3438
run: |
35-
curl -qfsSL "https://raw.githubusercontent.com/Azathothas/CertStream-Domains/main/Data/np_ccTLDs/certstream_domains_np_all_24h_httpx.txt" |
36-
awk '/http/ {print $1}' |
37-
sort -u |
38-
head -n 100 > urls.txt
39+
curl -qfsSL "https://raw.githubusercontent.com/Azathothas/CertStream-Domains/main/Data/np_ccTLDs/certstream_domains_np_all_24h_httpx.txt" | awk '/http/ {print $1}' | sort -u | head -n 100 > urls.txt
3940
4041
- name: Install hxn
4142
run: cargo install hxn

CHANGELOG.md

+28-2
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,47 @@
22

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

5-
## [0.1.8] - 2023-10-17
5+
## [0.1.9] - 2023-11-03
66

77
### Features
88

9-
- Bug-report,feature req templates
9+
- [closes #34], Take full page screenshots of urls
1010

1111
### Miscellaneous Tasks
1212

13+
- Bench gowitness with hxn via ci/c
1314
- Bump clap from 4.4.4 to 4.4.5
15+
- Notes // docx for new release
16+
- Bug-report,feature req templates
1417
- Bump clap from 4.4.5 to 4.4.6
1518
- Bump chromiumoxide from 0.5.1 to 0.5.3
1619
- Bump tokio from 1.32.0 to 1.33.0
1720
- Bump chromiumoxide from 0.5.3 to 0.5.4
1821
- Bump reqwest from 0.11.20 to 0.11.22
1922
- Print no title if url doesn't have one // closes #30
23+
- Add AUR installation guide
24+
- Show quote inside ascii block
25+
- [closes #22] ignore danger certs // dns
26+
- Bump clap from 4.4.6 to 4.4.7
27+
- Bump futures from 0.3.28 to 0.3.29
28+
- Use gh actions to test domains
29+
- Use a long timeout to preserve domain ss
30+
- Use long timeout // redirect msgs while installing deps
31+
- Use multiple tabs to increase speed
32+
- Test domains screenshots on the test commit
33+
- Fixed typos to trigger action
34+
- Trigger action on push
35+
- Use multple tabs // timeout
36+
- Manually install hyprfine than using binstall
37+
- Fixed typos on path
38+
- Fixed typosss
39+
- Fixed typo with hyperfine
40+
41+
### Refactor
42+
43+
- Use verbose mode to grab info else don't even make a request
44+
- Run domain tests on seprate job
45+
- Soo, it's bash not zsh
2046

2147
## [0.1.7] - 2023-09-26
2248

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.8"
3+
version = "0.1.9"
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)