Skip to content

Commit 0263bb9

Browse files
committed
Increment version to 0.3.0
1 parent 42f6ac3 commit 0263bb9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
next
1+
0.3.0
22
- Added option -f to begin reading file at given offset
33
- Added option -l to process exact length in bytes
44
- Added option -p to pack data into 8, 16, or 32 bit words

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.1)
22

33
project(bin2header
4-
VERSION 0.2.0
4+
VERSION 0.3.0
55
LANGUAGES CXX
66
)
77
set(PROJECT_PY_VERSION 0.1.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See [manpage](https://antumdeluge.github.io/bin2header/reference/bin2header.1.ht
1616

1717
## Downloads
1818

19-
- Latest release: [v0.2.0](https://github.com/AntumDeluge/bin2header/releases/tag/v0.2.0)
19+
- Latest release: [v0.3.0](https://github.com/AntumDeluge/bin2header/releases/tag/v0.3.0)
2020
- Latest Python release: [v0.1.2](https://github.com/AntumDeluge/bin2header/releases/tag/v0.1.2)
2121

2222

info.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
NAME=bin2header
3-
VERSION=0.2.0
3+
VERSION=0.3.0
44
PYVERSION=0.1.2
55

66
DISTDIRS="docs man src data tests scripts"

man/bin2header.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\"Created with GNOME Manpages Editor
22
.\"http://sourceforge.net/projects/gmanedit2
33

4-
.TH bin2header 1 "Aug 6, 2022" "bin2header-0.2.0"
4+
.TH bin2header 1 "Aug 6, 2022" "bin2header-0.3.0"
55

66
.SH NAME
77
Binary to Header

src/bin2header.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using namespace std;
1818

1919

20-
const string version = "0.2.0";
20+
const string version = "0.3.0";
2121
const string appname = "Binary to Header";
2222
string executable;
2323

0 commit comments

Comments
 (0)