File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.15 )
22cmake_policy (SET CMP0048 NEW )
33cmake_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
77execute_process (
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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" ,
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" : {
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "target" : " ES2020" ,
44 "module" : " ESNext" ,
5- "moduleResolution" : " node " ,
5+ "moduleResolution" : " bundler " ,
66 "declaration" : true ,
77 "declarationMap" : true ,
88 "sourceMap" : true ,
You can’t perform that action at this time.
0 commit comments