-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from broomva/release-please--branches--main--co…
…mponents--release-please-action chore(main): release 0.1.0
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Changelog | ||
|
||
## 0.1.0 (2024-05-13) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* added ArcanSpellsAgent and api/serving methods ([cc720b1](https://github.com/broomva/arcan/commit/cc720b12ae999586ce107e9c93d6a23241c7d0c0)) | ||
* added base tests ([9bed7d8](https://github.com/broomva/arcan/commit/9bed7d8eda7d6abaa3bbed2cb4e21796fd283660)) | ||
* added initial files for ai and api modules ([24bb23e](https://github.com/broomva/arcan/commit/24bb23ea6a94c17030210dc08caf44fb18414ba6)) | ||
* added next.js components ([e3c8679](https://github.com/broomva/arcan/commit/e3c8679a7781255e447087f29cf2c053fce3be2e)) | ||
* added runnables to create usable models from served endpoint ([08cb77c](https://github.com/broomva/arcan/commit/08cb77cc15a9a885f221c37204f1fb86505ef14d)) | ||
* added thirdweb wallet connect ([a2019f2](https://github.com/broomva/arcan/commit/a2019f23f9efbc112cf994395d27eff2aaf811a3)) | ||
* added user datamaodel and updated api ([e2de273](https://github.com/broomva/arcan/commit/e2de2736ee868be988841d60390720f4b6f3194b)) | ||
* compiled fe ([2d13004](https://github.com/broomva/arcan/commit/2d130046a2a6f217d6c953c5f2cb10e9f69a90d4)) | ||
* created entrypoint with typer for the cli ([3896b7a](https://github.com/broomva/arcan/commit/3896b7a0e8fc16740ee1b70ab1d35fafc8d47d82)) | ||
* included lib in gitignore and added lib files ([0c23992](https://github.com/broomva/arcan/commit/0c2399223ca275cae5ba25e5d61781d8ea756a6e)) | ||
* separating frontend and backend codebase ([67d56d4](https://github.com/broomva/arcan/commit/67d56d445fb9ca73ef513b20a1a4a9402acb9f02)) | ||
* stabilized scaffold from play nextjs to set up fully featured frontend ([1f99556](https://github.com/broomva/arcan/commit/1f99556a5e6ea5a9fd1a6d14e558c11ed81347e8)) | ||
* updated api key name ([d0b417c](https://github.com/broomva/arcan/commit/d0b417c1ab0a87d1e3e14e46f5ded2dc6d11d0f1)) | ||
* updated api with langserve routes ([dcbe459](https://github.com/broomva/arcan/commit/dcbe459bb99aa979ea5ebee13d2fcc55b4277c71)) | ||
* updated cli and api routes ([c2aee30](https://github.com/broomva/arcan/commit/c2aee30d147bba978f504c9a73ed1f2a98be226e)) | ||
* updated copy with arcan ([dc02a15](https://github.com/broomva/arcan/commit/dc02a15656b892f7e361d3106c43dcb236e34867)) | ||
* updated hero ([ecd1bc6](https://github.com/broomva/arcan/commit/ecd1bc6d4c83af53b9401bdde5300d0f595e5339)) | ||
* updated hero with proper copy ([38411df](https://github.com/broomva/arcan/commit/38411df6e57b7ee83f771b406564d29238f0ae20)) | ||
* updated homepage and spells studio copy ([c2ed033](https://github.com/broomva/arcan/commit/c2ed033ce067a7b6503a755d2fe521f6c0b3b583)) | ||
* updated logo ([586f4af](https://github.com/broomva/arcan/commit/586f4af14aebf7f066d568f99df303ccdc60c878)) | ||
* updated readme ([9c1f416](https://github.com/broomva/arcan/commit/9c1f416b124e21addff5a8abac83cde1e35c5c39)) | ||
* updated server run command in Makefile ([0197998](https://github.com/broomva/arcan/commit/019799881e269952e686d86ad07e24f01e5ea245)) | ||
* updated the auth settings ([cfbf3fc](https://github.com/broomva/arcan/commit/cfbf3fccdc4d03b81e0eb28d4a7f567e951983da)) | ||
* various updates to the app ([fef0ffe](https://github.com/broomva/arcan/commit/fef0ffe2dd70ffeece40d0f6c003410d8a2bed32)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
cli = Typer() | ||
|
||
__version__ = "0.0.1" | ||
__version__ = "0.1.0" | ||
|
||
|
||
def get_arcan_version(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "arcan" | ||
version = "0.0.1" | ||
version = "0.1.0" | ||
description = "An AI web3 tooling platform for the decentralized customization and enhancement of AI agents" | ||
authors = ["Carlos D. Escobar-Valbuena <[email protected]>"] | ||
license = "Apache 2.0" | ||
|