Skip to content

Commit 82535c4

Browse files
committed
2.0.1
1 parent 98c065f commit 82535c4

File tree

4 files changed

+57
-9
lines changed

4 files changed

+57
-9
lines changed

.github/workflows/ci.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: taiki-e/create-gh-release-action@v1
17+
with:
18+
changelog:
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
21+
upload-assets:
22+
needs: create-release
23+
strategy:
24+
matrix:
25+
os:
26+
- ubuntu-latest
27+
- macos-latest
28+
- windows-latest
29+
runs-on: ${{ matrix.os }}
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: taiki-e/upload-rust-binary-action@v1
33+
with:
34+
bin: uclanr
35+
# (optional) On which platform to distribute the `.tar.gz` file.
36+
# [default value: unix]
37+
# [possible values: all, unix, windows, none]
38+
tar: unix
39+
# (optional) On which platform to distribute the `.zip` file.
40+
# [default value: windows]
41+
# [possible values: all, unix, windows, none]
42+
zip: windows
43+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/target
2+
release-notes.txt

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uclanr"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
authors = ["Axlefublr", "TheSast", "blood-rogue"]
55
license = "MIT"
66
description = "A word generator that specializes in useful words"

README.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ Use `--raw` or `-r` to disable this functionality.
3838
Use `--case` or `-c` to specify the case of the words. Supported values are `caps` for Capitalized words, `title` for Title case words and `lower` for lower case letters which is a default.
3939

4040

41-
## How do I install this?
42-
43-
```
44-
cargo install uclanr
45-
```
46-
4741
## Usage
4842

4943
```
@@ -67,6 +61,16 @@ Options:
6761
Print help
6862
```
6963

70-
## Contribution
64+
# Install
7165

72-
`git pull` the dev branch before any changes, please
66+
```
67+
cargo install uclanr
68+
```
69+
70+
`cargo-binstall` and `cargo-quickinstall` are also supported
71+
72+
# Uninstall
73+
74+
```
75+
cargo uninstall uclanr
76+
```

0 commit comments

Comments
 (0)