Skip to content

Commit

Permalink
Tweak docs and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
staifa committed Apr 12, 2023
1 parent 4caa217 commit f1040e1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 8 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,19 @@ All notable changes to this project will be documented in this file. This change

## [Unreleased]
### Changed
- Add a new arity to `make-widget-async` to provide a different widget shape.

## [0.1.1] - 2023-04-11
### Changed
- Documentation on how to make the widgets.
### Added
- Documentation
- Linters
- CI pipeline

### Removed
- `make-widget-sync` - we're all async, all the time.
### Changed
- Bits and pieces of documentation

### Fixed
- Fixed widget maker to keep working when daylight savings switches over.
- Fixed tests to have 100% coverage

## 0.1.0 - 2023-04-11
### Added
- Files from the new template.
- Widget maker public API - `make-widget-sync`.

[Unreleased]: https://github.com/Flexiana/clj-openai/compare/0.1.1...HEAD
[0.1.1]: https://github.com/Flexiana/clj-openai/compare/0.1.0...0.1.1
- First working version
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Example:

## Development

When introducing a new version, bump the version number in `build.clj`. After it's merged into `master` branch, create a git tag on the last commit and push the tag, it will trigger deploy to Clojars.

There are utility scripts in the `bin/` directory for some common tasks:

* `./bin/nrepl` starts nREPL
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(:require [org.corfield.build :as bb]))

(def ^:private lib 'com.flexiana/clj-openai)
(def ^:private version "0.1.0")
(def ^:private version "0.1.1")

(defn ci
"Run the CI pipeline of tests (and build the JAR)."
Expand Down

0 comments on commit f1040e1

Please sign in to comment.