Skip to content

Commit

Permalink
Update version to v1.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaul committed Nov 1, 2020
1 parent 751546d commit 253e218
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/burn/version.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Version number, written as vV.V.BB or vV.V.BBaa
// (0xVVBBaa, in BCD notation)

#define VER_MAJOR 0
#define VER_MINOR 2
#define VER_BETA 97
#define VER_ALPHA 44
#define VER_MAJOR 1
#define VER_MINOR 0
#define VER_BETA 0
#define VER_ALPHA 0

#define BURN_VERSION (VER_MAJOR * 0x100000) + (VER_MINOR * 0x010000) + (((VER_BETA / 10) * 0x001000) + ((VER_BETA % 10) * 0x000100)) + (((VER_ALPHA / 10) * 0x000010) + (VER_ALPHA % 10))

Expand Down

2 comments on commit 253e218

@barbudreadmon
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@0xe1f could you provide us with some v1.0.0.0 release package for macos ?

@dinkc64
Copy link
Collaborator

@dinkc64 dinkc64 commented on 253e218 Nov 1, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

v1.0.0. woohoo!! \o/
nice work guys :)

Please sign in to comment.