buildar 0.0.1.2 → 0.0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +6 -6
- data/VERSION +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -7,17 +7,17 @@ Rake tasks
|
|
|
7
7
|
----------
|
|
8
8
|
* version - show the current project version (./VERSION)
|
|
9
9
|
* manifest - show the files tracked by the gem (./MANIFEST.txt)
|
|
10
|
-
*
|
|
10
|
+
* tag - git tag according to current version, pushed to origin
|
|
11
11
|
* bump_build - increment the 4th version number (1.2.3.4 -> 1.2.3.5)
|
|
12
12
|
* bump_patch - increment the 3rd version number (1.2.3.4 -> 1.2.4.0)
|
|
13
13
|
* bump_minor - increment the 2nd version number (1.2.3.4 -> 1.3.0.0)
|
|
14
14
|
* bump_major - increment the 1st version number (1.2.3.4 -> 2.0.0.0)
|
|
15
|
-
*
|
|
15
|
+
* build - bump_build, build a .gem file inside pkg/
|
|
16
16
|
* publish - gem push
|
|
17
|
-
* release -
|
|
18
|
-
* release_patch - bump_patch,
|
|
19
|
-
* release_minor - bump_minor,
|
|
20
|
-
* release_major - bump_major,
|
|
17
|
+
* release - build, tag, publish
|
|
18
|
+
* release_patch - bump_patch, release
|
|
19
|
+
* release_minor - bump_minor, release
|
|
20
|
+
* release_major - bump_major, release
|
|
21
21
|
|
|
22
22
|
Philosophy
|
|
23
23
|
----------
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.1
|
|
1
|
+
0.0.2.1
|