Skip to content

Commit

Permalink
Merge pull request #119 from hartwork/bump-version
Browse files Browse the repository at this point in the history
Bump version to 1.6.0
  • Loading branch information
hartwork authored Nov 27, 2023
2 parents afc4d87 + 27dbc57 commit 1cfafdc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
Binary file modified recordings/expected-0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified recordings/expected-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified recordings/expected-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ttyplot
version: 1.5.2
version: 1.6.0
summary: realtime plotting utility for terminal/console with data input from stdin
description: |
takes data from standard input / unix pipeline,
Expand Down
10 changes: 3 additions & 7 deletions ttyplot.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,9 @@
#define STR_(x) #x
#define STR(x) STR_(x)
#define VERSION_MAJOR 1
#define VERSION_MINOR 5
#define VERSION_PATCH 2
#if VERSION_PATCH == 0
#define VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR)
#else
#define VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH)
#endif
#define VERSION_MINOR 6
#define VERSION_PATCH 0
#define VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH)

#define T_RARR '>'
#define T_UARR '^'
Expand Down

0 comments on commit 1cfafdc

Please sign in to comment.