Skip to content

Commit c1722dc

Browse files
committed
build: Bump version to 0.2.0 and upgrade JS toolchain dependencies
1 parent c45f604 commit c1722dc

7 files changed

Lines changed: 670 additions & 541 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.15)
22
cmake_policy(SET CMP0048 NEW)
33
cmake_policy(SET CMP0077 NEW)
4-
project(midi-sketch VERSION 1.0.0 LANGUAGES CXX)
4+
project(midi-sketch VERSION 0.2.0 LANGUAGES CXX)
55

66
# Get git commit hash and build timestamp
77
execute_process(

README.md

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

33
[![CI](https://github.com/libraz/midi-sketch/actions/workflows/ci.yml/badge.svg)](https://github.com/libraz/midi-sketch/actions/workflows/ci.yml)
44
[![codecov](https://codecov.io/gh/libraz/midi-sketch/branch/main/graph/badge.svg)](https://codecov.io/gh/libraz/midi-sketch)
5-
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/libraz/midi-sketch)
5+
[![Version](https://img.shields.io/badge/version-0.2.0-blue.svg)](https://github.com/libraz/midi-sketch)
66
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/libraz/midi-sketch/blob/main/LICENSE)
77
[![C++17](https://img.shields.io/badge/C%2B%2B-17-blue?logo=c%2B%2B)](https://en.cppreference.com/w/cpp/17)
88
[![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WebAssembly-lightgrey)](https://github.com/libraz/midi-sketch)

README_ja.md

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

33
[![CI](https://github.com/libraz/midi-sketch/actions/workflows/ci.yml/badge.svg)](https://github.com/libraz/midi-sketch/actions/workflows/ci.yml)
44
[![codecov](https://codecov.io/gh/libraz/midi-sketch/branch/main/graph/badge.svg)](https://codecov.io/gh/libraz/midi-sketch)
5-
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/libraz/midi-sketch)
5+
[![Version](https://img.shields.io/badge/version-0.2.0-blue.svg)](https://github.com/libraz/midi-sketch)
66
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/libraz/midi-sketch/blob/main/LICENSE)
77
[![C++17](https://img.shields.io/badge/C%2B%2B-17-blue?logo=c%2B%2B)](https://en.cppreference.com/w/cpp/17)
88
[![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WebAssembly-lightgrey)](https://github.com/libraz/midi-sketch)

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libraz/midi-sketch",
3-
"version": "1.0.0",
3+
"version": "0.2.0",
44
"type": "module",
55
"packageManager": "yarn@4.12.0",
66
"description": "MIDI auto-generation library for pop music sketches",
@@ -54,15 +54,15 @@
5454
"node": ">=16.0.0"
5555
},
5656
"devDependencies": {
57-
"@biomejs/biome": "^2.3.10",
58-
"esbuild": "^0.27.2",
59-
"lint-staged": "^16.2.7",
57+
"@biomejs/biome": "^2.4.16",
58+
"esbuild": "^0.28.0",
59+
"lint-staged": "^17.0.7",
6060
"simple-git-hooks": "^2.13.1",
61-
"typescript": "^5.0.0",
62-
"vitest": "^4.0.16"
61+
"typescript": "^6.0.3",
62+
"vitest": "^4.1.8"
6363
},
6464
"volta": {
65-
"node": "22.21.1",
65+
"node": "22.22.3",
6666
"yarn": "4.12.0"
6767
},
6868
"simple-git-hooks": {

src/core/version_info.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
#ifndef MIDISKETCH_VERSION_INFO_H
1010
#define MIDISKETCH_VERSION_INFO_H
1111

12-
#define MIDISKETCH_VERSION "1.0.0"
12+
#define MIDISKETCH_VERSION "0.2.0"
1313
#define MIDISKETCH_GIT_HASH "@GIT_COMMIT_HASH@"
1414
#define MIDISKETCH_BUILD_TIMESTAMP "@BUILD_TIMESTAMP@"
1515

1616
// Combined build ID for quick verification
17-
// Format: "1.0.0+abcd1234.20260130123456"
17+
// Format: "0.2.0+abcd1234.20260130123456"
1818
#define MIDISKETCH_BUILD_ID MIDISKETCH_VERSION "+" MIDISKETCH_GIT_HASH "." MIDISKETCH_BUILD_TIMESTAMP
1919

2020
#endif // MIDISKETCH_VERSION_INFO_H

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "ES2020",
44
"module": "ESNext",
5-
"moduleResolution": "node",
5+
"moduleResolution": "bundler",
66
"declaration": true,
77
"declarationMap": true,
88
"sourceMap": true,

0 commit comments

Comments
 (0)