Skip to content

Commit

Permalink
updated version number and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
unconv committed Jun 24, 2023
1 parent ca7d430 commit 5b81a8f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] 2023-06-24
## [0.1.2] 2023-06-24

### Fixed

- Issue #6: Iterating over a selected version didn't preserve its message history
- Issue #7: The `replace_text` function given to GPT didn't work with code

### Changed

- The `replace_text` function no longer uses regex because GPT can not properly format regex that includes code

## [0.1.1] 2023-06-23

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ GPT-AutoPilot uses an iterative process, so after it has accomplished the task,

# Usage

GPT-AutoPilot works on both Linux and Windows (and probably macOS) and it has [standalone packages](https://github.com/unconv/gpt-autopilot/releases/tag/v0.1.1), that don't need the Python interpreter.
GPT-AutoPilot works on both Linux and Windows (and probably macOS) and it has [standalone packages](https://github.com/unconv/gpt-autopilot/releases/tag/v0.1.2), that don't need the Python interpreter.

## Linux

You can either clone the repository and run `gpt-autopilot.py` or you can [download](https://github.com/unconv/gpt-autopilot/releases/download/v0.1.1/gpt-autopilot-linux-ubuntu-0.1.1.zip) the standalone package.
You can either clone the repository and run `gpt-autopilot.py` or you can [download](https://github.com/unconv/gpt-autopilot/releases/download/v0.1.2/gpt-autopilot-linux-ubuntu-0.1.2.zip) the standalone package.

1\. Export your [OpenAI API key](https://platform.openai.com/account/api-keys) as `OPENAI_API_KEY` environment variable or put it in the `config.json` file (see `config.sample.json`). You can also run the program directly, and it will ask you for your API key.

Expand All @@ -33,7 +33,7 @@ $ ./gpt-autopilot.py

## Windows: Standalone Package

On Windows, you can [download](https://github.com/unconv/gpt-autopilot/releases/download/v0.1.1/gpt-autopilot-windows-0.1.1.zip) the standalone package, unzip it and run `gpt-autopilot.exe`. It will ask you for your API key.
On Windows, you can [download](https://github.com/unconv/gpt-autopilot/releases/download/v0.1.2/gpt-autopilot-windows-0.1.2.zip) the standalone package, unzip it and run `gpt-autopilot.exe`. It will ask you for your API key.

## Windows: with Python interpreter

Expand Down
2 changes: 1 addition & 1 deletion gpt-autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import betterprompter
from config import get_config, save_config

VERSION = "0.1.1"
VERSION = "0.1.2"
CONFIG = get_config()

def compact_commands(messages):
Expand Down

0 comments on commit 5b81a8f

Please sign in to comment.