Skip to content

Commit 1292281

Browse files
committed
chore: bump version to 0.1.1
1 parent 358d7d7 commit 1292281

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

bin/kb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4-
KB_VERSION="0.1.0"
4+
KB_VERSION="0.1.1"
55

66
# --- Detect KB_ROOT (where lib/ and templates/ live) ---
77
resolve_script_path() {

tests/run_all.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ set -euo pipefail
99

1010
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
1111
KB_BIN="${SCRIPT_DIR}/../bin/kb"
12+
KB_VERSION="$(sed -n 's/^KB_VERSION="\([^"]*\)"$/\1/p' "$KB_BIN")"
1213

1314
PASS_COUNT=0
1415
FAIL_COUNT=0
@@ -158,7 +159,7 @@ test_init_manifest_has_versioned_shape() {
158159

159160
test_init_works_through_symlinked_install() {
160161
local tmpdir="$1"
161-
local cellar_root="$tmpdir/Cellar/kb/0.1.0"
162+
local cellar_root="$tmpdir/Cellar/kb/${KB_VERSION}"
162163
local front_bin="$tmpdir/front-bin"
163164

164165
mkdir -p \

0 commit comments

Comments
 (0)