From 22834806ba56593d4d81a8159d49e4fd064ad186 Mon Sep 17 00:00:00 2001 From: Kafonek Date: Fri, 8 Sep 2023 13:48:09 -0400 Subject: [PATCH] 1.0.0 release --- CHANGELOG.md | 1 + README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9894d87..f4970ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 For pre-1.0 releases, see [0.0.35 Changelog](https://github.com/noteable-io/origami/blob/0.0.35/CHANGELOG.md) ## [Unreleased] +### [1.0.0] - 2023-09-08 ### [1.0.0-alpha.5] - 2023-08-16 ### Added diff --git a/README.md b/README.md index e457dce..d932490 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ print(output_collection.outputs[0].content.raw) # 'Hello World\n' ## 1.0 Roadmap -Origami is heading towards a 1.0 release. The alpha release candidate is on Pypi now, installable with a `--pre` flag. The 1.0 release represents a major refactor of the Origami using the best practices and lessons learned from creating multiple production API and RTU clients, including our ChatGPT plugin. It will likely come out of alpha once all of our internal applications are using the Origami 1.0 syntax. +Origami 1.0 implies that we have a stable architecture such as a split of `APIClient` and `RTUClient` and the layout of the RTU modeling. Some syntax may change as Origami is integrated into production components. Any breaking changes will be a minor version bump. ## Contributing diff --git a/pyproject.toml b/pyproject.toml index 7b545d0..fc202a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "noteable-origami" -version = "1.0.0-alpha.5" +version = "1.0.0" description = "The Noteable API interface" authors = ["Matt Seal "] maintainers = ["Matt Seal "]