@tachu/host-defaults 1.0.0-rc.1 → 1.0.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.0-rc.2] - 2026-06-13
9
+
10
+ ### Fixed
11
+
12
+ - Align published `@tachu/*` workspace dependency versions with the lockstep release (extensions, host-defaults, and cli no longer resolve `@tachu/core` to `1.0.0-rc.0` when published as `1.0.0-rc.1`).
13
+ - Add release validation that fails when `bun.lock` workspace versions drift from `package.json` after a version bump.
14
+
8
15
  ## [1.0.0-rc.1] - 2026-06-13
9
16
 
10
17
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tachu/host-defaults",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "Default host wiring for Tachu — provider inference, semantic retrieval facade, capability checks. Shared by CLI and non-CLI hosts.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -46,8 +46,8 @@
46
46
  "registry": "https://registry.npmjs.org/"
47
47
  },
48
48
  "dependencies": {
49
- "@tachu/core": "1.0.0-rc.0",
50
- "@tachu/extensions": "1.0.0-rc.0"
49
+ "@tachu/core": "1.0.0-rc.3",
50
+ "@tachu/extensions": "1.0.0-rc.3"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "bun run clean && bunx tsc -p tsconfig.build.json && bun ../../scripts/copy-md-assets.ts",