Skip to content

Commit

Permalink
Add release notes and bump version to 1.0.1 beta.
Browse files Browse the repository at this point in the history
Beta releases have a non-zero final number.
  • Loading branch information
alexbudmsft committed Sep 4, 2015
1 parent 099f0cd commit 6cb2398
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ for %%f in (%FLAVORS%) do (
REM
copy install.bat deploy\%%f\

REM Copy release notes.
REM
copy releasenotes.txt deploy\%%f\

set LUA_BIN_DIR=debug

if /I "%%f" NEQ "debug" (
Expand Down
7 changes: 7 additions & 0 deletions releasenotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
1.0.1 (beta)
------------

* Add get_nearest_sym API. Mimics debugger `ln' command.

1.0.0 - Initial Release
-----------------------
8 changes: 7 additions & 1 deletion src/vercommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#define DBG_SCRIPT_VER_MAJ 1
#define DBG_SCRIPT_VER_MIN 0
#define DBG_SCRIPT_VER_BETA 1

#define STR2(x) #x
#define STR(x) STR2(x)
Expand All @@ -15,7 +16,12 @@
#endif

#define VER_COMPANYNAME_STR "Microsoft Corporation"
#define VER_FILEVERSION_STR STR(DBG_SCRIPT_VER_MAJ) "." STR(DBG_SCRIPT_VER_MIN)

#define VER_FILEVERSION_STR \
STR(DBG_SCRIPT_VER_MAJ) "."\
STR(DBG_SCRIPT_VER_MIN) "."\
STR(DBG_SCRIPT_VER_BETA)

#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
#define VER_PRODUCTNAME_STR VER_FILEDESCRIPTION_STR
#define VER_LEGALCOPYRIGHT_STR "(c) Microsoft Corporation"

0 comments on commit 6cb2398

Please sign in to comment.