Skip to content

Commit faa3770

Browse files
committed
Bump version to 0.107
1 parent d86173a commit faa3770

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.PHONY: clean default check linting pre-coverage
2+
VER = $(shell meson introspect _build/ --projectinfo | jq -r '.version' && rm -rf _build)
23

34
DESTDIR ?= ../tmproot
45

@@ -28,6 +29,10 @@ clean:
2829
rm -rf tmproot
2930
rm -f python-cffi/netplan/_netplan_cffi.*
3031

32+
dist: clean _build
33+
tar --exclude="_build" --exclude=".git" --exclude="debian" --exclude=".vscode" -cvJf ../netplan-$(VER).tar.xz .
34+
ln -sf netplan-$(VER).tar.xz ../netplan.io_$(VER).orig.tar.xz # Debian .orig symlink
35+
3136
check: default
3237
meson test -C _build --verbose
3338

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('netplan', 'c',
2-
version: '0.106',
2+
version: '0.107',
33
license: 'GPL3',
44
default_options: [
55
'c_std=c99',

0 commit comments

Comments
 (0)