Skip to content

Commit f1040e1

Browse files
author
staifa
committed
Tweak docs and bump version
1 parent 4caa217 commit f1040e1

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

CHANGELOG.md

+8-11
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,19 @@ All notable changes to this project will be documented in this file. This change
33

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

87
## [0.1.1] - 2023-04-11
9-
### Changed
10-
- Documentation on how to make the widgets.
8+
### Added
9+
- Documentation
10+
- Linters
11+
- CI pipeline
1112

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

1516
### Fixed
16-
- Fixed widget maker to keep working when daylight savings switches over.
17+
- Fixed tests to have 100% coverage
1718

1819
## 0.1.0 - 2023-04-11
1920
### Added
20-
- Files from the new template.
21-
- Widget maker public API - `make-widget-sync`.
22-
23-
[Unreleased]: https://github.com/Flexiana/clj-openai/compare/0.1.1...HEAD
24-
[0.1.1]: https://github.com/Flexiana/clj-openai/compare/0.1.0...0.1.1
21+
- First working version

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Example:
6666

6767
## Development
6868

69+
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.
70+
6971
There are utility scripts in the `bin/` directory for some common tasks:
7072

7173
* `./bin/nrepl` starts nREPL

build.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(:require [org.corfield.build :as bb]))
44

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

88
(defn ci
99
"Run the CI pipeline of tests (and build the JAR)."

0 commit comments

Comments
 (0)