Skip to content

Commit

Permalink
v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyquagsire23 committed Jan 19, 2023
1 parent 8c2422c commit ffc20a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions packaging/flatpak/org.openjkdf2.OpenJKDF2.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
</content_rating>
<releases>
<!--NEXT_RELEASE_HERE-->
<release version="0.8.2" date="2023-01-18" />
<release version="0.8.1" date="2023-01-16" />
<release version="0.8.0" date="2023-01-15" />
<release version="0.7.13" date="2023-01-15" />
Expand Down
6 changes: 3 additions & 3 deletions src/version.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#include "types.h"
#include "version.h"

const char* openjkdf2_aReleaseVersion = "v0.8.1";
const wchar_t* openjkdf2_waReleaseVersion = L"v0.8.1";
const char* openjkdf2_aReleaseVersion = "v0.8.2";
const wchar_t* openjkdf2_waReleaseVersion = L"v0.8.2";
const char* openjkdf2_aReleaseCommit = OPENJKDF2_RELEASE_COMMIT;
const wchar_t* openjkdf2_waReleaseCommit = OPENJKDF2_RELEASE_COMMIT_W;
const char* openjkdf2_aReleaseCommitShort = OPENJKDF2_RELEASE_COMMIT_SHORT;
const wchar_t* openjkdf2_waReleaseCommitShort = OPENJKDF2_RELEASE_COMMIT_SHORT_W;
const int openjkdf2_releaseVersionMajor = 0;
const int openjkdf2_releaseVersionMinor = 8;
const int openjkdf2_releaseVersionPatch = 1;
const int openjkdf2_releaseVersionPatch = 2;

0 comments on commit ffc20a8

Please sign in to comment.