From 97fe09f1570e17c45549bcb34672ec7c554507cf Mon Sep 17 00:00:00 2001 From: ddavison Date: Fri, 23 May 2014 15:16:51 -0400 Subject: [PATCH] =?UTF-8?q?=E2=93=90=E2=93=93=E2=93=93=E2=93=98=E2=93=9D?= =?UTF-8?q?=E2=93=96=20=E2=93=9F=E2=93=90=E2=93=A3=E2=93=92=E2=93=97=20?= =?UTF-8?q?=E2=93=A3=E2=93=9E=20=E2=93=93=E2=93=9E=E2=93=92=E2=93=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/publishing-a-package.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/publishing-a-package.md b/docs/publishing-a-package.md index a5a45b25c..30d74eeb7 100644 --- a/docs/publishing-a-package.md +++ b/docs/publishing-a-package.md @@ -79,6 +79,10 @@ The `minor` option to the publish command tells apm to increment the second digit of the version before publishing so the published version will be `0.1.0` and the Git tag created will be `v0.1.0`. +The `patch` option to the publish command tells apm to increment the third +digit of the version before publishing so the published version will be `0.0.1` +and the Git tag created will be `v0.0.1`. + In the future you can run `apm publish major` to publish the `1.0.0` version but since this was the first version being published it is a good idea to start with a minor release.