Skip to content

Commit 9f121d2

Browse files
committed
Bump version to 0.9.2
1 parent d8c9fd4 commit 9f121d2

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

blink/tunables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define BLINK_MAJOR 0
66
#define BLINK_MINOR 9
7-
#define BLINK_PATCH 0
7+
#define BLINK_PATCH 2
88

99
#define LINUX_MAJOR 4
1010
#define LINUX_MINOR 5

tool/release-cosmo.sh

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
#!/bin/sh
2-
set -ex
32
m=tiny
43

4+
echo -n 'did you update blink/tunables.h and ape/ape.s? [n] '
5+
read didit
6+
if [ "$didit" != "y" ]; then
7+
exit 1
8+
fi
9+
10+
set -ex
11+
./configure
12+
make -j8 check
13+
514
# create the linux arm64 build
615
make m=$m -j8 o/$m/aarch64/blink/blink
716
o/third_party/gcc/aarch64/bin/aarch64-linux-musl-strip \
@@ -39,8 +48,7 @@ scp ~/cosmo/o//test/libc/thread/pthread_create_test.com pi:
3948
ssh pi ./pthread_create_test.com
4049

4150
# we're finished
51+
o//blink/blink -v
4252
ls -hal \
4353
~/cosmo/ape/blink-aarch64.gz \
4454
~/cosmo/ape/blink-darwin-arm64.gz
45-
46-
echo BE SURE TO UPDATE THE VERSION IN APE/APE.S

0 commit comments

Comments
 (0)