Skip to content

Commit

Permalink
Bump to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bostick committed Aug 25, 2024
1 parent 4188f3a commit 5e2a42c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cmake --build .
Print out tablature from a .tbt TabIt file:
```
% ./tbt-printer --input-file black.tbt
tbt printer v1.1.0
tbt printer v1.2.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
output file: out.txt
Expand All @@ -43,7 +43,7 @@ finished!
Generate a MIDI file from a .tbt TabIt file:
```
% ./tbt-converter --input-file black.tbt
tbt converter v1.1.0
tbt converter v1.2.0
Copyright (C) 2024 by Brenton Bostick
input file: black.tbt
output file: out.mid
Expand All @@ -61,7 +61,7 @@ finished!
Print out information about a MIDI file:
```
% ./midi-info --input-file black.mid
midi info v1.1.0
midi info v1.2.0
Copyright (C) 2024 by Brenton Bostick
input file: black.mid
parsing...
Expand Down
2 changes: 1 addition & 1 deletion exe/midi-info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

int main(int argc, const char *argv[]) {

LOGI("midi info v1.1.0");
LOGI("midi info v1.2.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

int main(int argc, const char *argv[]) {

LOGI("tbt converter v1.1.0");
LOGI("tbt converter v1.2.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

int main(int argc, const char *argv[]) {

LOGI("tbt info v1.1.0");
LOGI("tbt info v1.2.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down
2 changes: 1 addition & 1 deletion exe/tbt-printer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

int main(int argc, const char *argv[]) {

LOGI("tbt printer v1.1.0");
LOGI("tbt printer v1.2.0");
LOGI("Copyright (C) 2024 by Brenton Bostick");

if (argc == 1) {
Expand Down

0 comments on commit 5e2a42c

Please sign in to comment.