Skip to content

Commit b822520

Browse files
committed
0.0.3-beta3 versioning.
1 parent 23259d5 commit b822520

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
cmake_minimum_required(VERSION 3.16.0)
22
project(nwindows
3-
VERSION 0.0.2
3+
VERSION 0.0.3
44
DESCRIPTION "Modern Text User Interface Library for C++."
55
HOMEPAGE_URL "https://rerdavies.github.io/nwindows/"
66
LANGUAGES CXX
77
)
8-
set(NWINDOWS_RELEASE_QUALIFIER "-beta2")
8+
set(NWINDOWS_RELEASE_QUALIFIER "-beta3")
99

1010

1111

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Documentation](https://img.shields.io/badge/documentation-Examples-blue)](https://github.com/rerdavies/nwindows/tree/main/examples)
66
<!--[![Documentation](https://img.shields.io/badge/documentation-Release%20Notes-blue)](https://reravies.github.io/nwindows/) -->
77

8-
*0.0.2-beta2*
8+
*0.0.3-beta3*
99

1010
The *NWindows* library is a C++ text user interface (TUI) library for building console applications on Linux.
1111
The library uses elements to compose user interfaces using an innovative and concise manipulator system. The library provides a rich set of elements with which to build user interfaces.

ReleaseNotes.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Release Notes
22

3+
### NWindows 0.0.3-beta3
4+
5+
- Cache can_display_character() results for faster rendering.
6+
7+
38
### NWindows 0.0.2-beta2
49

510
- Polyfill checkbox/radio-button/dropdown characters on EGA/VGA (Linux) terminals.

docs/src/NWindowsVersionInfo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
* SOFTWARE.
2222
*/
2323

24-
export const NWindowsVersion = "0.0.2-beta2";
24+
export const NWindowsVersion = "0.0.3-beta3";

docs/src/assets/ReleaseNotes.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Release Notes
22

3+
### NWindows 0.0.3-beta3
4+
5+
- Cache can_display_character() results for faster rendering.
6+
7+
38
### NWindows 0.0.2-beta2
49

510
- Polyfill checkbox/radio-button/dropdown characters on EGA/VGA (Linux) terminals.

src/include/NWindows/NWindowsVersionInfo.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
// Uses Semantic Versioning
2929
#define NWINDOWS_MAJOR_VERSION 0
3030
#define NWINDOWS_MINOR_VERSION 0
31-
#define NWINDOWS_BUILD_NUMBER 2 // increments with each release
32-
#define NWINDOWS_RELEASE_QUALIFIER "-beta2"
31+
#define NWINDOWS_BUILD_NUMBER 3 // increments with each release
32+
#define NWINDOWS_RELEASE_QUALIFIER "-beta3"
3333

3434

3535

0 commit comments

Comments
 (0)