aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 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).