Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: Reza Tavakoli <rta.0070@gmail.com>
  • Loading branch information
tavrez committed Aug 31, 2020
1 parent 51a7cb5 commit 122bb32
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] (OpenSSH middleware API version 0x00050000) - xxxx-xx-xx

## [1.0.2] (OpenSSH middleware API version 0x00050000) - 2020-09-01

### Changed

- Fine tuned some of output debug messages.

### Fixed

- `user_id` wasn't set properly([#4](/~https://github.com/tavrez/openssh-sk-winhello/issues/4)).

## [1.0.1] (OpenSSH middleware API version 0x00050000) - 2020-07-06

### Changed
Expand All @@ -23,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First version, support key generation and signing with key.

[Unreleased]: /~https://github.com/tavrez/openssh-sk-winhello/compare/v1.0.1...HEAD
[Unreleased]: /~https://github.com/tavrez/openssh-sk-winhello/compare/v1.0.2...HEAD
[1.0.2]: /~https://github.com/tavrez/openssh-sk-winhello/compare/v1.0.1...v1.0.2
[1.0.1]: /~https://github.com/tavrez/openssh-sk-winhello/compare/v1.0...v1.0.1
[1.0.0]: /~https://github.com/tavrez/openssh-sk-winhello/compare/v0.1...v1.0
[0.1.0]: /~https://github.com/tavrez/openssh-sk-winhello/releases/tag/v0.1
5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([winhello], [1.0.2-dev], [/~https://github.com/tavrez/openssh-sk-winhello/issues])
AC_INIT([winhello], [1.0.2], [/~https://github.com/tavrez/openssh-sk-winhello/issues])
AC_CONFIG_SRCDIR([src/winhello.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIRS([m4])
Expand All @@ -11,7 +11,8 @@ AC_PREFIX_DEFAULT([/usr])
AC_DEFINE([PACKAGE_VERSION_MAJOR], [1], [Major number of build])
AC_DEFINE([PACKAGE_VERSION_MINOR], [0], [Minor number of build])
AC_DEFINE([PACKAGE_VERSION_PATCH], [2], [Patch number of build])
AC_DEFINE([PACKAGE_VERSION_DEV], [1], [Internal build])
AC_DEFINE([PACKAGE_VERSION_DEV], [0], [Internal build])
AC_DEFINE([PACKAGE_VERSION_PRE], [0], [Pre-release build])
AC_DEFINE([PACKAGE_VERSION_BUILDNUMBER], [6], [Incremental number of build])
AC_DEFINE([SK_DEBUG], [1], [Enable output messages])

Expand Down
4 changes: 2 additions & 2 deletions src/version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define _V2S(M,N,P,B) #M "." #N "." #P "." #B
#define VERSION2STR(M,N,P,B) _V2S(M,N,P,B)

#if PACKAGE_VERSION_MAJOR <= 0
#if PACKAGE_VERSION_PRE > 0
#define PRERELEASE 0x2L
#else
#define PRERELEASE 0x0L
Expand Down Expand Up @@ -43,7 +43,7 @@ BEGIN
VALUE "LegalCopyright", "LGPLv3"
VALUE "LegalTrademarks", ""
VALUE "OriginalFilename", "winhello.dll"
VALUE "ProductName", "OpenSSH WinHello_SK"
VALUE "ProductName", "OpenSSH SK WinHello"
VALUE "ProductVersion", VERSION2STR(PACKAGE_VERSION_MAJOR, PACKAGE_VERSION_MINOR, PACKAGE_VERSION_PATCH, PACKAGE_VERSION_BUILDNUMBER)
END
END
Expand Down

0 comments on commit 122bb32

Please sign in to comment.