Skip to content

Commit

Permalink
Move on v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
agievich committed Jun 23, 2023
1 parent 841ba3a commit 02efbd9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(BEE2 C)

set(BEE2_VERSION_MAJOR "2")
set(BEE2_VERSION_MINOR "1")
set(BEE2_VERSION_PATCH "1")
set(BEE2_VERSION_PATCH "2")
set(BEE2_VERSION
"${BEE2_VERSION_MAJOR}.${BEE2_VERSION_MINOR}.${BEE2_VERSION_PATCH}")

Expand Down
4 changes: 2 additions & 2 deletions cmd/core/cmd_sig.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
\brief Command-line interface to Bee2: signing files
\project bee2/cmd
\created 2022.08.20
\version 2023.06.19
\version 2023.06.23
\copyright The Bee2 authors
\license Licensed under the Apache License, Version 2.0 (see LICENSE.txt).
*******************************************************************************
Expand Down Expand Up @@ -525,7 +525,7 @@ err_t cmdSigVerify(const char* file, const char* sig_file,
code = ERR_BAD_PUBKEY;
ERR_CALL_HANDLE(code, cmdBlobClose(stack));
}
// загрузить длдговременные параметры
// загрузить долговременные параметры
code = cmdSigStdParams(params, pubkey_len / 2);
ERR_CALL_HANDLE(code, cmdBlobClose(stack));
// хэшировать
Expand Down
6 changes: 3 additions & 3 deletions include/bee2/info.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
#define BEE2_NAME "Bee2"
#define BEE2_VERSION_MAJOR "2"
#define BEE2_VERSION_MINOR "1"
#define BEE2_VERSION_PATCH "1"
#define BEE2_VERSION_PATCH "2"

#define BEE2_VERSION\
BEE2_VERSION_MAJOR "." BEE2_VERSION_MINOR "." BEE2_VERSION_PATCH

#define BEE2_VERSION_NUM\
2, 1, 1
2, 1, 2

/*!
*******************************************************************************
\mainpage Библиотека Bee2
\version 2.1.1
\version 2.1.2
\section toc Содержание
Expand Down

0 comments on commit 02efbd9

Please sign in to comment.