Skip to content

Commit 62697cc

Browse files
jddunnclaude
andcommitted
fix: reset version to 0.1.3 from incorrect 1.0.3 [skip ci]
- Version was incorrectly bumped from 0.1.2 to 1.0.3 - Fixed to 0.1.3 (proper patch bump) - Updated semantic-release config: feat → patch (conservative) - BREAKING changes → minor (not major while 0.x) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0e5655f commit 62697cc

3 files changed

Lines changed: 9 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## <small>1.0.3 (2025-12-15)</small>
1+
## <small>0.1.3 (2025-12-15)</small>
22

33
* fix: atlas persona schema and add orchestrator tests ([10533e0](https://github.com/framersai/agentos/commit/10533e0))
44
* fix: improve test coverage for model selection options propagation ([1d86154](https://github.com/framersai/agentos/commit/1d86154))
@@ -24,15 +24,7 @@
2424
* feat(guardrails): add guardrails module exports ([83480a6](https://github.com/framersai/agentos/commit/83480a6))
2525
* feat(guardrails): add ICrossAgentGuardrailService interface ([f4a19c0](https://github.com/framersai/agentos/commit/f4a19c0))
2626

27-
## <small>1.0.2 (2025-12-13)</small>
28-
29-
* revert: set version back to 0.1.1 (1.0.1 was premature) ([e5af05f](https://github.com/framersai/agentos/commit/e5af05f))
30-
31-
## <small>1.0.1 (2025-12-13)</small>
32-
33-
* fix: trigger semantic-release with v0.1.1 tag baseline ([0a5733f](https://github.com/framersai/agentos/commit/0a5733f))
34-
35-
## 1.0.0 (2025-12-13)
27+
## <small>0.1.2 (2025-12-13)</small>
3628

3729
* fix: add EXTENSION_SECRET_DEFINITIONS export and fix atlas persona ([692e596](https://github.com/framersai/agentos/commit/692e596))
3830
* fix: add missing pino dependency ([0f4afdc](https://github.com/framersai/agentos/commit/0f4afdc))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@framers/agentos",
3-
"version": "1.0.3",
3+
"version": "0.1.3",
44
"description": "Modular AgentOS orchestration library",
55
"type": "module",
66
"main": "dist/index.js",

release.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/**
22
* Semantic Release Configuration
33
*
4-
* Automates versioning and releases based on Conventional Commits:
5-
* - fix: → patch (0.1.0 → 0.1.1)
6-
* - feat: → minor (0.1.0 → 0.2.0)
7-
* - feat!: or BREAKING CHANGE: → major (0.1.01.0.0)
4+
* Conservative versioning for 0.x development:
5+
* - fix: → patch (0.1.2 → 0.1.3)
6+
* - feat: → patch (0.1.2 → 0.1.3) - conservative until 1.0
7+
* - feat!: or BREAKING CHANGE: → minor (0.1.x0.2.0) - not major while 0.x
88
* - perf:, refactor: → patch
99
* - docs:, chore:, test:, ci: → no release
1010
*/
@@ -17,12 +17,12 @@ export default {
1717
['@semantic-release/commit-analyzer', {
1818
preset: 'conventionalcommits',
1919
releaseRules: [
20-
{ type: 'feat', release: 'minor' },
20+
{ type: 'feat', release: 'patch' }, // Conservative: feat = patch until 1.0
2121
{ type: 'fix', release: 'patch' },
2222
{ type: 'perf', release: 'patch' },
2323
{ type: 'refactor', release: 'patch' },
2424
{ type: 'revert', release: 'patch' },
25-
{ breaking: true, release: 'major' },
25+
{ breaking: true, release: 'minor' }, // BREAKING = minor while 0.x
2626
// These don't trigger releases: docs, style, chore, test, ci, build
2727
],
2828
parserOpts: {

0 commit comments

Comments
 (0)