Skip to content

Commit 0337e04

Browse files
author
Patrick Rye
committed
Corrected Version Mistake -> v1.1.2
Last revert was given the wrong version number. v1.0.2 should have been v1.1.2
1 parent 0846cc1 commit 0337e04

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ChangesLog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to this project will be documented here.
44
This project adheres to [Semantic Versioning](http://semver.org/)
55

6-
## [1.0.2] - 2017-02-24
6+
## [1.1.2] - 2017-02-24
77
### Added
88
* "f" key now causes random balls to be fired off in different directions.
99

@@ -18,12 +18,12 @@ This project adheres to [Semantic Versioning](http://semver.org/)
1818
* Elastic collision equation being wrong (had cos when it should have been sin)
1919

2020

21-
## [1.0.1] - 2017-02-22
21+
## [1.1.1] - 2017-02-22
2222
### Updated
2323
* Vectors now use shrink to fit command to clear memory
2424

2525

26-
## [1.0.0] - 2017-02-20
26+
## [1.1.0] - 2017-02-20
2727
### Added
2828
* Cannonballs are now vector based instead of array based
2929
* Path is now vector based

src/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@
3434
#define DEFINED_VER_MAJOR 1
3535
/**< The major version number */
3636

37-
#define DEFINED_VER_MINOR 0
37+
#define DEFINED_VER_MINOR 1
3838
/**< The minor version number */
3939

4040
#define DEFINED_VER_BUILD 2
4141
/**< The patch version number */
4242

43-
#define DEFINED_VER_RC_FILEVERSION 1,0,2,25
43+
#define DEFINED_VER_RC_FILEVERSION 1,1,2,0
4444
/**< The number used in the boilerplate.rc file
4545
Follows MAJOR,MINOR,PATCH,BUILD where build is the number of times this version has been built*/
4646

47-
#define DEFINED_VER_RC_FILEVERSION_STRING "1, 0, 2, 25\0"
47+
#define DEFINED_VER_RC_FILEVERSION_STRING "1, 1, 2, 0\0"
4848
/**< Is the same as DEFINED_VER_RC_FILEVERSION but is a null terminated string */
4949

50-
#define DEFINED_VER_FULLVERSION_STRING "1.0.2-r"
50+
#define DEFINED_VER_FULLVERSION_STRING "1.1.2-r"
5151
/**< The full string of the version number */
5252

5353
/*****************************************************************************/

0 commit comments

Comments
 (0)