Skip to content

Commit

Permalink
chore: bump version to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
belingud committed Jan 11, 2025
1 parent 793d38c commit c5b0501
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.3
current_version = 0.2.4
commit = True
tag = True

Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@

---
## [0.2.4](https://github.com/belingud/gptcomet/compare/v0.2.3..v0.2.4) - 2025-01-11

### ⛰️ Features

- add AI21 provider support - ([08e9c84](https://github.com/belingud/gptcomet/commit/08e9c84d0df775878132d5217886a8ba03dcd68a)) - belingud

### 🚜 Refactor

- change CompletionPath to pointer type - ([d4ba644](https://github.com/belingud/gptcomet/commit/d4ba6447ee520ca99ac6693d7520185cee7f2662)) - belingud

### 📚 Documentation

- update changelog for v0.2.3 - ([cf2f158](https://github.com/belingud/gptcomet/commit/cf2f158640fcf1247dbbb03ba9edca295defd590)) - belingud

### ⚙️ Miscellaneous Tasks

- update uv lock - ([414a8c5](https://github.com/belingud/gptcomet/commit/414a8c5ebc3df50ac9e51dcdc88c4fccb2b9e08c)) - belingud


---
## [0.2.3](https://github.com/belingud/gptcomet/compare/v0.2.2..v0.2.3) - 2025-01-10

Expand Down
82 changes: 54 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,34 @@
<!-- TOC -->

- [GPTComet: AI-Powered Git Commit Message Generator](#gptcomet-ai-powered-git-commit-message-generator)
- [Overview](#overview)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Setup](#setup)
- [Configuration Methods](#configuration-methods)
- [Provider Setup Guide](#provider-setup-guide)
- [OpenAI](#openai)
- [Gemini](#gemini)
- [Claude/Anthropic](#claudeanthropic)
- [Vertex](#vertex)
- [Azure](#azure)
- [Ollama](#ollama)
- [Other Supported Providers](#other-supported-providers)
- [Manual Provider Setup](#manual-provider-setup)
- [Commands](#commands)
- [Configuration](#configuration)
- [Supported Configuration Keys](#supported-configuration-keys)
- [file_ignore](#file_ignore)
- [provider](#provider)
- [output](#output)
- [Supported languages](#supported-languages)
- [console](#console)
- [Supported Keys](#supported-keys)
- [Example](#example)
- [Development](#development)
- [Contact](#contact)
- [License](#license)
- [Overview](#overview)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Setup](#setup)
- [Configuration Methods](#configuration-methods)
- [Provider Setup Guide](#provider-setup-guide)
- [OpenAI](#openai)
- [Gemini](#gemini)
- [Claude/Anthropic](#claudeanthropic)
- [Vertex](#vertex)
- [Azure](#azure)
- [Ollama](#ollama)
- [Other Supported Providers](#other-supported-providers)
- [Manual Provider Setup](#manual-provider-setup)
- [Commands](#commands)
- [Configuration](#configuration)
- [Supported Configuration Keys](#supported-configuration-keys)
- [file\_ignore](#file_ignore)
- [provider](#provider)
- [output](#output)
- [Supported languages](#supported-languages)
- [console](#console)
- [Supported Keys](#supported-keys)
- [Example](#example)
- [Development](#development)
- [Contact](#contact)
- [License](#license)

<!-- /TOC -->
<!-- /TOC -->
Expand Down Expand Up @@ -297,6 +297,32 @@ Enter max tokens [1024]:
[GPTComet] Provider test configured successfully.
```
Some special provider may need your custome config. Like `cloudflare`.
> Be aware that the model name is not used in cloudflare api.
```shell
$ gmsg newprovider

Selected provider: cloudflare
Configure provider:

Previous inputs:
Enter API Base URL: https://api.cloudflare.com/client/v4/accounts/<account_id>/ai/run
Enter model name: llama-3.3-70b-instruct-fp8-fast
Enter API key: abc*************************************

Enter Enter max tokens (default: 1024):
> 1024

Provider cloudflare already has a configuration. Do you want to overwrite it? (y/N): y

Provider cloudflare configured successfully!

$ gmsg config set cloudflare.completion_path @cf/meta/llama-3.3-70b-instruct-fp8-fast
$ gmsg config set cloudflare.answer_path result.response
```
## Commands
The following are the available commands for GPTComet:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/spf13/cobra"
)

var version = "0.2.3"
var version = "0.2.4"

func main() {
var (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gptcomet"
version = "0.2.3"
version = "0.2.4"
description = "GPTComet: AI-Powered Git Commit Message Generator."
authors = [{ name = "belingud", email = "im.victor@qq.com" }]
readme = "README.md"
Expand Down

0 comments on commit c5b0501

Please sign in to comment.