aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-04 13:14:14 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-04 13:14:14 +1200
commit6fc5898b8e9572083e7ead2d5a6165cb30cbd568 (patch)
tree93bbf4da7edb12347c94738c74038de1307c2f47
parentFirst commit (diff)
parentBump VERSION (diff)
downloadvim-perl-version-bump-6fc5898b8e9572083e7ead2d5a6165cb30cbd568.tar.gz
vim-perl-version-bump-6fc5898b8e9572083e7ead2d5a6165cb30cbd568.zip
Merge branch 'hotfix/v0.1.1' into develop
* hotfix/v0.1.1: Bump VERSION Use assignment not fat-arrow in doc examples
-rw-r--r--README.md6
-rw-r--r--VERSION2
-rw-r--r--doc/perl_version_bump.txt6
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 4975533..01e9955 100644
--- a/README.md
+++ b/README.md
@@ -7,15 +7,15 @@ number of a package-scoped `$VERSION` assignment.
So with this format:
- our $VERSION => '1.23';
+ our $VERSION = '1.23';
Keying a map to `<Plug>PerlVersionBumpMinor` would yield:
- our $VERSION => '1.24';
+ our $VERSION = '1.24';
Keying a map to `<Plug>PerlVersionBumpMajor` would yield:
- our $VERSION => '2.00';
+ our $VERSION = '2.00';
There is no support for development versions with underscore prefixes like
`1.23_001` (yet).
diff --git a/VERSION b/VERSION
index 6e8bf73..17e51c3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.0
+0.1.1
diff --git a/doc/perl_version_bump.txt b/doc/perl_version_bump.txt
index 918166c..d97a0b4 100644
--- a/doc/perl_version_bump.txt
+++ b/doc/perl_version_bump.txt
@@ -8,15 +8,15 @@ number of a package-scoped `$VERSION` assignment.
So with this format:
>
- our $VERSION => '1.23';
+ our $VERSION = '1.23';
<
Keying a map to `<Plug>PerlVersionBumpMinor` would yield:
>
- our $VERSION => '1.24';
+ our $VERSION = '1.24';
<
Keying a map to `<Plug>PerlVersionBumpMajor` would yield:
>
- our $VERSION => '2.00';
+ our $VERSION = '2.00';
<
There is no support for development versions with underscore prefixes like
`1.23_001` (yet).