Skip to content

Commit

Permalink
feat: Release version 0.1.74
Browse files Browse the repository at this point in the history
This commit updates the version of the aicommit package to 0.1.74 in Cargo.toml, Cargo.lock, package.json, and the version file. It
  • Loading branch information
suenot committed Jan 31, 2025
1 parent e66eb99 commit 7f23f7f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aicommit"
version = "0.1.73"
version = "0.1.74"
edition = "2021"
authors = ["Eugen Soloviov <suenot@gmail.com>"]
description = "A CLI tool that generates concise and descriptive git commit messages using LLMs"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
"postinstall": "node -e \"process.exit(0)\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "0.1.73"
"version": "0.1.74"
}
21 changes: 17 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,27 @@ Legend:

There are several ways to install aicommit:

### 1. Install via Cargo (Recommended)
### Using npm/npx

```bash
# Run without installation
npx @suenot/aicommit

# Or install globally
npm install -g @suenot/aicommit
aicommit
```

### Using Cargo (Rust package manager)

If you have Rust installed:
```bash
cargo install aicommit
```

### 2. Download Pre-built Binaries
### Manual Installation

#### Download Pre-built Binaries

You can download pre-built binaries from the [GitHub Releases](https://github.com/suenot/aicommit/releases) page.

Expand Down Expand Up @@ -99,7 +112,7 @@ sudo mv aicommit /usr/local/bin/
2. Extract the executable
3. Add the directory to your PATH or move the executable to a directory in your PATH

### 3. Build from Source
### Build from Source

If you want to build the latest version from source:

Expand Down Expand Up @@ -328,7 +341,7 @@ By default, aicommit will only commit changes that have been staged using `git a
# Only commit previously staged changes
aicommit

# Stage and commit all changes
# Automatically stage and commit all changes
aicommit --add

# Stage all changes, commit, and push
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.73
0.1.74

0 comments on commit 7f23f7f

Please sign in to comment.