Skip to content

Commit

Permalink
Update RELNOTES.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
rafael-santiago committed Jun 16, 2022
1 parent c5c981b commit 4f1d075
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 9 deletions.
13 changes: 13 additions & 0 deletions RELNOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
Rafael
--

vx20220001 [git-tag: 'vx20220001']

Added support for two more platforms.

Features:

- Support for NetBSD.
- Support for OpenBSD.

Bugfixes:

- None.

vx20220000 [git-tag: 'vx20220000']

First library version. Support focused on FreeBSD, Windows and Linux.
Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_alloc.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_ALLOC 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_ALLOC 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_alloc \- allocates a masked memory segment

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_deinit.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_DEINIT 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_DEINIT 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_deinit \- deinitializes \fIBoojum\fR memory protection system

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_free.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_FREE 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_FREE 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_free \- frees a previous allocated masked memory segment

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_get.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_GET 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_GET 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_get \- retrieves plain data from a masked memory segment

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_init.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_INIT 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_INIT 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_init \- initializes \fIBoojum\fR memory protection system

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_realloc.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_REALLOC 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_REALLOC 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_realloc \- reallocates a masked memory segment

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_set.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_SET 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_SET 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_set \- loads memory into a masked memory segment

Expand Down
2 changes: 1 addition & 1 deletion etc/man/man3/boojum_timed_get.3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.\"
.\" This source code is licensed under the BSD-style license found in the
.\" LICENSE file in the root directory of this source tree.
.TH BOOJUM_TIMED_GET 3 "May 18, 2022" "version 0x20220000" "BOOJUM's API"
.TH BOOJUM_TIMED_GET 3 "June 16, 2022" "version 0x20220001" "BOOJUM's API"
.SH NAME
boojum_timed_get \- timed version of
.BR boojum_get ()
Expand Down
2 changes: 1 addition & 1 deletion src/boojum.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
extern "C" {
#endif

#define BOOJUM_VERSION 0x20220000 // INFO(Rafael): 16-bits for the year | 16-bits for the release number
#define BOOJUM_VERSION 0x20220001 // INFO(Rafael): 16-bits for the year | 16-bits for the release number

int boojum_init(const size_t kupd_timeout_in_msecs);

Expand Down

0 comments on commit 4f1d075

Please sign in to comment.