Skip to content

Commit

Permalink
🔨 Initialize the sentence array with zeros.
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-castell committed Oct 14, 2021
1 parent 56721cb commit a20b804
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 10 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[*]
end_of_line = lf
insert_final_newline = true

[*.{c,cpp,h,hpp}]
charset = utf-8
indent_style = tab
indent_size = 3
trim_trailing_whitespace = true

[CMakeLists.txt]
indent_style = tab
indent_size = 3
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
All significant changes to **genpass2** will be documented here.

- [Released](#released)
- [Version 0.1.5 - *2021-10-14*](#version-015---2021-10-14)
- [Version 0.1.4 - *2021-10-12*](#version-014---2021-10-12)
- [Version 0.1.3 - *2021-10-12*](#version-013---2021-10-12)
- [Version 0.1.2 - *2021-10-11*](#version-012---2021-10-11)
- [Version 0.1.1 - *2021-10-11*](#version-011---2021-10-11)
- [Version 0.1.0 - *2021-10-11*](#version-010---2021-10-11)

## Released
### Version [0.1.5](https://github.com/nico-castell/genpass2/releases/tag/0.1.5) - *2021-10-14*
- Initialize the *sentence* array with zeros.

### Version [0.1.4](https://github.com/nico-castell/genpass2/releases/tag/0.1.4) - *2021-10-12*
Fixed the description of RPM packages.

Expand All @@ -21,5 +26,5 @@ Added information to the manpage.
### Version [0.1.1](https://github.com/nico-castell/genpass2/releases/tag/0.1.1) - *2021-10-11*
Fixed a typo and a missing description.

## Version 0.1.0 - *2021-10-11*
### Version 0.1.0 - *2021-10-11*
Initial release.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.16.0)

# Project config
set(PROJ "genpass2")
set(VERS "0.1.4")
set(VERS "0.1.5")

project("${PROJ}" VERSION "${VERS}")
add_executable("${PROJ}" "src/main.cpp")
Expand Down
3 changes: 3 additions & 0 deletions assets/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Thu Oct 14 2021 Nicolás Castellán - 0.1.5-1
- Initialize the main array with zeros.

* Tue Oct 12 2021 Nicolás Castellán - 0.1.4-1
- Fixed the description of RPM packages.

Expand Down
4 changes: 1 addition & 3 deletions assets/description.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
This is a replacement program for the Golang based genpass proyect. By using C++ and reading the
file /dev/urandom directly, this program can achieve absurdly superior speeds when generating very
large ammounts of random data.
This is a replacement program for the Golang based genpass proyect. By using C++ and reading the file /dev/urandom directly, this program can achieve absurdly superior speeds when generating very large ammounts of random data.
2 changes: 1 addition & 1 deletion man-src/genpass2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% genpass2(1) 0.1.4
% genpass2(1) 0.1.5
% Nicolás Castellán
% Oct 2021

Expand Down
2 changes: 1 addition & 1 deletion man/genpass2.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "genpass2" "1" "Oct 2021" "0.1.4" "GENPASS2"
.TH "genpass2" "1" "Oct 2021" "0.1.5" "GENPASS2"
.hy
.SH NAME
.PP
Expand Down
6 changes: 3 additions & 3 deletions src/main.cpp