Skip to content

Commit

Permalink
v1.0.0-beta.2: dotsig with support for ECDSA and PKCS
Browse files Browse the repository at this point in the history
  • Loading branch information
evias committed May 8, 2024
1 parent 067e9fc commit 1b6ebe0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## v1.0.0-beta.2 - 2024-05-08

### Added

- build: add cmake files for cross-platform builds

- docs: update building instructions

### Changed

- docs: fix changelog, add reference documentation to readme
- fix: missing includes filesystem and algorithm
- build: removed manual Makefile targets, use cmake instead

## 1.0.0-beta - 2024-05-03
## v1.0.0-beta - 2024-05-03

### Added

Expand All @@ -32,4 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Create and verify digital signatures with ECDSA using files and/or stdin.
- Create and verify digital signatures with PKCS using files and/or stdin.

[1.0.0-beta]: https://github.com/evias/dotsig/releases/tag/v1.0.0-beta

v1.0.0-beta: https://github.com/evias/dotsig/releases/tag/v1.0.0-beta
v1.0.0-beta.2: https://github.com/evias/dotsig/releases/tag/v1.0.0-beta.2
4 changes: 2 additions & 2 deletions src/dotsig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <iostream> // std::cout
#include <initializer_list> // std::initializer_list

const dotsig::SEMVER_VERSION dotsig::VERSION = {1,0,0, "beta"};
const dotsig::SEMVER_VERSION dotsig::VERSION = {1,0,0, "beta.2"};

int dotsig::print_usage() {
std::cout
Expand Down Expand Up @@ -46,4 +46,4 @@ int dotsig::print_version() {

std::cout << std::endl;
return 0;
}
}

0 comments on commit 1b6ebe0

Please sign in to comment.