Skip to content

Commit 8a1b071

Browse files
committed
Merge branch 'release/0.1.2' into develop
2 parents c71605e + b801b6b commit 8a1b071

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@
3232
*.app
3333

3434
# Ninja
35-
/build*
35+
/build*
36+
37+
/.vscode

libbyteconvert/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
pkg = import('pkgconfig')
2-
mylib = shared_library('byteconvert', 'ByteConvert.cpp', version : '0.1.1', soversion : '0',install: true)
2+
mylib = shared_library('byteconvert', 'ByteConvert.cpp', version : '0.1.2', soversion : '0',install: true)
33
install_headers('ByteConvert.hpp', subdir : 'ByteConvert')
44
pkg.generate(libraries : mylib,
5-
version : '0.1.1',
5+
version : '0.1.2',
66
name : 'libbyteconvert',
77
filebase : 'libbyteconvert',
88
description : 'A conversion library.')

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
project('libbyteconvert','cpp',version:'0.1.1',default_options : ['c_std=c11', 'cpp_std=c++11'])
1+
project('libbyteconvert','cpp',version:'0.1.2',default_options : ['c_std=c11', 'cpp_std=c++11'])
22
subdir('libbyteconvert')

0 commit comments

Comments
 (0)