Skip to content

Commit

Permalink
Bump version to 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stengerh committed Dec 14, 2016
1 parent 6a94e50 commit c48dcf9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion foo_tfsandbox/foo_tfsandbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DECLARE_COMPONENT_VERSION(
COMPONENT_VERSION,
"Title formatting editor with syntax coloring, code structure view and preview.\n"
"\n"
"Copyright (C) 2016 Holger Stenger\n"
"Copyright (C) " COMPONENT_COPYRIGHT_YEAR " Holger Stenger\n"
"- https://github.com/stengerh/foo_tfsandbox\n"
"\n"
"Scintilla source code editing component\n"
Expand Down
12 changes: 10 additions & 2 deletions foo_tfsandbox/foo_tfsandbox_version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#define COMPONENT_NAME "Title Formatting Sandbox"
#define COMPONENT_VERSION "1.0.2"
#define COMPONENT_VERSION_NUMERIC 1, 0, 2, 0
#define COMPONENT_VERSION_MAJOR 1
#define COMPONENT_VERSION_MINOR 0
#define COMPONENT_VERSION_PATCH 3
#define COMPONENT_COPYRIGHT_YEAR "2016"

#define MAKE_STRING(text) #text
#define MAKE_COMPONENT_VERSION(major,minor,patch) MAKE_STRING(major) "." MAKE_STRING(minor) "." MAKE_STRING(patch)

#define COMPONENT_VERSION MAKE_COMPONENT_VERSION(COMPONENT_VERSION_MAJOR,COMPONENT_VERSION_MINOR,COMPONENT_VERSION_PATCH)
#define COMPONENT_VERSION_NUMERIC COMPONENT_VERSION_MAJOR, COMPONENT_VERSION_MINOR, COMPONENT_VERSION_PATCH, 0
Binary file modified foo_tfsandbox/foo_tfsandbox_version.rc
Binary file not shown.

0 comments on commit c48dcf9

Please sign in to comment.