Skip to content

Commit a69fd79

Browse files
author
Datata1
committed
release: v1.0.0
1 parent dcbd11a commit a69fd79

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## v1.0.0 (2026-02-21)
2+
3+
### Features
4+
5+
- feat(usage): Add usage history manager (#49)
6+
- feat(pipeline-stream): add log stream (#46)
7+
- feat(git): add git resource (#45)
8+
- feat(landscape): add landscape resource (#41)
9+
- feat(model-export): provide model methods to export data (#40)
10+
- feat(excetions): add base exceptions (#39)
11+
- feat(agent): add copilot instructions (#35)
12+
- feat(domain): add domains resource (#33)
13+
- feat(workspace): impleöment base operations for workspaces (#32)
14+
15+
### Refactors
16+
17+
- refactor: Change README file (#37)
18+
- refactor(filetree): reorganize files (#30)
19+
- refactor(team): streamline api operations pattern (#29)
20+
21+
### Other
22+
23+
- release process (#51)
24+
- demo(dashboard): add dashboard demo (#50)
25+
- refac(commit-hook): remove commitizen (#38)
26+
- test: fix ci
27+
- test(suite): set up initial testsuite (#36)
28+
- chore(test): bla bla (#28)
29+
- chore(types): clean types annotations (#10)
30+
131
## v0.4.0 (2025-07-22)
232

333
### Feat

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ bump: ## Bumps the version. Usage: make bump VERSION=0.5.0
5858
fi
5959
@echo ">>> Bumping version from $(CURRENT_VERSION) to $(VERSION)..."
6060
@sed -i '' 's/^version = ".*"/version = "$(VERSION)"/' pyproject.toml
61+
@echo ">>> Updating lockfile..."
62+
uv lock
6163
@echo "\033[0;32mVersion updated to $(VERSION) in pyproject.toml\033[0m"
6264

6365
changelog: ## Generates a changelog entry from git log since last tag. Usage: make changelog [VERSION=x.y.z]
@@ -123,7 +125,7 @@ release: ## Bumps version, updates changelog, commits, tags, and pushes. Usage:
123125
$(MAKE) changelog VERSION=$(VERSION)
124126
@# Step 3: Commit and tag
125127
@echo ">>> Committing release..."
126-
git add pyproject.toml CHANGELOG.md
128+
git add pyproject.toml CHANGELOG.md uv.lock
127129
git commit -m "release: v$(VERSION)"
128130
git tag -a "v$(VERSION)" -m "Release $(VERSION)"
129131
@# Step 4: Push commit and tag

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "codesphere"
33

4-
version = "0.4.0"
4+
version = "1.0.0"
55
description = "Use Codesphere within python scripts."
66
readme = "README.md"
77
license = { file="LICENSE" }

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)