Skip to content

Commit 4a35383

Browse files
authored
Prepare to publish 1.0.0rc1 (#15)
Also add tag creation utility
1 parent a018cd5 commit 4a35383

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

misc/tag-release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
version_tag="$(pdm show --version)"
3+
git tag -a "$version_tag" -m "$version_tag"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lmstudio"
3-
version = "1.0.0b1"
3+
version = "1.0.0rc1"
44
description = "LM Studio Python SDK (pre-release public alpha)"
55
authors = [
66
{name = "LM Studio", email = "team@lmstudio.ai"},

src/lmstudio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""LM Studio Python SDK."""
22

3-
__version__ = "1.0.0b1"
3+
__version__ = "1.0.0rc1"
44

55

66
# In addition to publishing the main SDK client API,

0 commit comments

Comments
 (0)