-
Notifications
You must be signed in to change notification settings - Fork 0
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 #19 from AllSpiceIO/su/new-release
Add changelog and note on versioning with v2
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 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,28 @@ | ||
# Changelog | ||
|
||
## v2.0.0 | ||
|
||
This is a breaking change. You will need to update your scripts to use py-allspice v2. | ||
|
||
- Renamed Gitea across py-allspice to AllSpice. For example, | ||
|
||
```py | ||
from gitea import Gitea | ||
|
||
gitea = Gitea(URL, TOKEN) | ||
``` | ||
|
||
to | ||
|
||
```py | ||
from allspice import AllSpice | ||
|
||
allspice_client = AllSpice(token_text=TOKEN) | ||
``` | ||
|
||
- Added example scripts in [the examples directory](./examples). | ||
- Added functions to get AllSpice generated svg and json for CAD files. | ||
- Added optional Rate Limiting to the client. By default, Rate Limiting is on at 100 | ||
requests every minute. You can disable it by setting `ratelimiting` to `None` when | ||
creating an instance of `AllSpice`. | ||
- Added `units_map` argument when creating a new team. |
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