From 73178a3c72d39a1cf21fddaee5bc1ca1bc24b9e4 Mon Sep 17 00:00:00 2001 From: halo Date: Tue, 28 Jan 2020 20:25:18 +0100 Subject: [PATCH] Version bump 1.0.1 -> 1.0.2 --- CHANGELOG.md | 4 ++++ macosvpn/Info.plist | 2 +- spec/features/version_spec.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93342d6..1d699ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # master +# 1.0.2 + +* The options `--split`, `--disconnectswitch`, and `--disconnectlogout` now actually work. See #43 + # 1.0.1 * This is a cosmetic release, no changes to the code. diff --git a/macosvpn/Info.plist b/macosvpn/Info.plist index f68185d..4c1fd6d 100644 --- a/macosvpn/Info.plist +++ b/macosvpn/Info.plist @@ -7,6 +7,6 @@ CFBundleName macosvpn CFBundleVersion - 1.0.1 + 1.0.2 diff --git a/spec/features/version_spec.rb b/spec/features/version_spec.rb index 75f882b..315dcff 100644 --- a/spec/features/version_spec.rb +++ b/spec/features/version_spec.rb @@ -6,7 +6,7 @@ context 'with the --version flag' do it 'shows the Help' do output, status = Macosvpn.call arguments: '--version' - expect(output).to eq "1.0.1\n" + expect(output).to eq "1.0.2\n" expect(status).to eq 2 end end