Skip to content

Commit

Permalink
Prepare to publish 1.0.0rc1 (#15)
Browse files Browse the repository at this point in the history
Also add tag creation utility
  • Loading branch information
ncoghlan authored Feb 27, 2025
1 parent a018cd5 commit 4a35383
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions misc/tag-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
version_tag="$(pdm show --version)"
git tag -a "$version_tag" -m "$version_tag"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lmstudio"
version = "1.0.0b1"
version = "1.0.0rc1"
description = "LM Studio Python SDK (pre-release public alpha)"
authors = [
{name = "LM Studio", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion src/lmstudio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""LM Studio Python SDK."""

__version__ = "1.0.0b1"
__version__ = "1.0.0rc1"


# In addition to publishing the main SDK client API,
Expand Down

0 comments on commit 4a35383

Please sign in to comment.