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