Skip to content

Commit 5f86cbf

Browse files
committed
Version 1.0.1.0
1 parent 2d51790 commit 5f86cbf

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Specify version format
2-
version: "1.0.0.{build}"
2+
version: "1.0.1.{build}"
33

44
# Image to use
55
image: Visual Studio 2019

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
[![MinGW build status](https://img.shields.io/appveyor/build/chronoxor/CppSecurity/master?label=MinGW)](https://ci.appveyor.com/project/chronoxor/CppSecurity)
88
[![Windows build status](https://img.shields.io/appveyor/build/chronoxor/CppSecurity/master?label=Windows)](https://ci.appveyor.com/project/chronoxor/CppSecurity)
99

10-
C++ Security Library contains initial templates for a new C++ library project.
10+
C++ Security Library provides different security functionality for password
11+
generation, password hashing algorithms and Google Authenticator.
1112

1213
[CppSecurity API reference](https://chronoxor.github.io/CppSecurity/index.html)
1314

include/security/version.h

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*!
2+
\file version.h
3+
\brief Version definition
4+
\author Ivan Shynkarenka
5+
\date 04.06.2021
6+
\copyright MIT License
7+
*/
8+
9+
#ifndef CPPSECURITY_VERSION_H
10+
#define CPPSECURITY_VERSION_H
11+
12+
/*! \mainpage C++ Security Library
13+
14+
C++ Security Library provides different security functionality for password
15+
generation, password hashing algorithms and Google Authenticator.
16+
17+
This document contains CppSecurity API references.
18+
19+
Library description, features, requirements and usage examples can be find on
20+
GitHub: https://github.com/chronoxor/CppSecurity
21+
22+
*/
23+
24+
/*!
25+
\namespace CppLogging
26+
\brief C++ Security project definitions
27+
*/
28+
namespace CppSecurity {
29+
30+
//! Project version
31+
const char version[] = "1.0.1.0";
32+
33+
} // namespace CppSecurity
34+
35+
#endif // CPPSECURITY_VERSION_H

0 commit comments

Comments
 (0)