Skip to content

Commit

Permalink
Update for v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ericyd committed Jan 26, 2022
1 parent 0838fa8 commit b4ea74d
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["strip"]

[package]
name = "twitter"
version = "1.0.0"
version = "1.1.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
53 changes: 53 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
- [Posting a multi-line tweet](#posting-a-multi-line-tweet)
- [Using an alt profile](#using-an-alt-profile)
- [`delete`](#delete)
- [`like`](#like)
- [`unlike`](#unlike)
- [`home`](#home)
- [`me`](#me)
- [`feed`](#feed)
- [`version`](#version)
- [`help`](#help)
Expand Down Expand Up @@ -162,6 +166,53 @@ Examples
tw delete 123456
```

### `like`

Like a tweet

Arguments
* `tweet_id` (Required)

Examples
```bash
tw like 123456
```

### `unlike`

Unlike a tweet

Arguments
* `tweet_id` (Required)

Examples
```bash
tw unlike 123456
```

### `home`

Read your recently posted tweets (good for the ego)

Arguments
* `count` (Optional)
* Must be between 5 and 100

Examples
```bash
tw home
tw home 42
```

### `me`

Get some info about yourself

Examples
```bash
tw me
```

### `feed`

See what people are saying about you
Expand Down Expand Up @@ -245,6 +296,8 @@ tw -h

Turns out cross-compiling is quite hard locally so just use GitHub Actions - its free!

Oh but be sure to [bump the version first](./Cargo.toml)

```bash
# cut tag
git tag 1.0.0 -s
Expand Down

0 comments on commit b4ea74d

Please sign in to comment.