Skip to content

Commit

Permalink
Release 2.1.0 (#85)
Browse files Browse the repository at this point in the history
* update changelog

* Bump version: 2.0.0 → 2.1.0
  • Loading branch information
rgbkrk committed Jul 21, 2023
1 parent 02a803b commit 75720c8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 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 = 2.0.0
current_version = 2.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
Expand Down
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

## Unreleased

## `2.1.0`

#### Removed

- Remove unused dependency on `vdom`

#### Changed

- Improved DataFrame summarization

## `2.0.0`

### Enhancements:
Expand All @@ -19,13 +29,13 @@
#### Changed

- 🧪 Craft a more ipythonic context manager (#62, #66)

- Meet the new `Context` class: capture IPython history and make it ChatCompletion-friendly
- Farewell `get_historical_context`, hello `build_context`: context construction using the new Context class
- Reduce messages sent to GPT models by trimming based on estimated number of tokens (#57)

- 🎯 Type annotations step in! (#59)


#### Improved

- 📏 Token length checks now available in %%assist (#57)
Expand All @@ -39,7 +49,6 @@
- 🚫 `%%assist` no longer generates new code cells. It now creates Markdown output instead (#66)
- Relatedly, `in-place` is no longer an option since we do not change the cells


### Changes:

- `craft_user_message` now relies on the new `craft_message` function
Expand Down
2 changes: 1 addition & 1 deletion genai/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tool.poetry]
name = "genai"
version = "2.0.0"
version = "2.1.0"
description = "Generative AI for IPython (enhance your code cells)"
authors = ["Kyle Kelley <[email protected]>"]
maintainers = ["Kyle Kelley <[email protected]>"]
Expand Down

0 comments on commit 75720c8

Please sign in to comment.