metasploit-erd 1.0.0.pre.rails.pre.4.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/RELEASING.md +10 -8
- data/lib/metasploit/erd/version.rb +9 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1b3fb6433b636134b653872755b5e6f69f32ec8
|
4
|
+
data.tar.gz: c9deb5d411e557128fb5474fb65ae56a1b96b2a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8e67ff6d302a371699429300bdbc5d2bec8c4a7f98275c78e997ebebde80486063b64454d3fca269d59acbcc1e780ed0d5debc9c37262a30226a233e5f5203b
|
7
|
+
data.tar.gz: 3d8ccf139f3126f1a4b276922322960ecbead92b56395ab35a101db3cb55daa0424b00ecc8b65c8dfbb4745282b3613b23f1f586c5a63236ac6ed865c366a605
|
data/RELEASING.md
CHANGED
@@ -40,18 +40,20 @@ Complete these steps on DESTINATION
|
|
40
40
|
|
41
41
|
The entries in the [CHANGELOG.md](CHANGELOG.md) can be used to help determine how the `VERSION` should be bumped.
|
42
42
|
|
43
|
-
###
|
43
|
+
### Bug fixes
|
44
44
|
|
45
|
-
If the [CHANGELOG.md](CHANGELOG.md) contains only
|
46
|
-
|
45
|
+
If the [CHANGELOG.md](CHANGELOG.md) contains only Bug Fixes for the Next Release, then increment
|
46
|
+
[`PATCH`](lib/metasploit/erd/version.rb).
|
47
47
|
|
48
|
-
###
|
48
|
+
### Compatible API changes
|
49
49
|
|
50
|
-
If the [CHANGELOG.md](CHANGELOG.md) contains any
|
51
|
-
|
50
|
+
If the [CHANGELOG.md](CHANGELOG.md) contains any Enhancements or Deprecations, then increment
|
51
|
+
[`MINOR`](lib/metasploit/erd/version.rb) and reset [`PATCH`](lib/metasploit/erd/version.rb) to `0`.
|
52
52
|
|
53
|
-
|
54
|
-
|
53
|
+
### Incompatible API changes
|
54
|
+
|
55
|
+
If the [CHANGELOG.md](CHANGELOG.md) contains any Incompatible Change, then increment [`MAJOR`](lib/metasploit/erd/version.rb) and
|
56
|
+
reset [`MINOR`](lib/metasploit/erd/version.rb and [`PATCH`](lib/metasploit/erd/version.rb) to `0`.
|
55
57
|
|
56
58
|
## Setup [CHANGELOG.md](CHANGELOG.md) for next release
|
57
59
|
|
@@ -10,12 +10,16 @@ module Metasploit
|
|
10
10
|
MAJOR = 1
|
11
11
|
# The minor version number, scoped to the {MAJOR} version number.
|
12
12
|
MINOR = 0
|
13
|
-
# The patch number, scoped to the {MINOR} version
|
13
|
+
# The patch version number, scoped to the {MAJOR} and {MINOR} version numbers.
|
14
14
|
PATCH = 0
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
#
|
15
|
+
|
16
|
+
#
|
17
|
+
# Module Methods
|
18
|
+
#
|
19
|
+
|
20
|
+
# The full version string, including the {Metasploit::ERD::Version::MAJOR},
|
21
|
+
# {Metasploit::ERD::Version::MINOR}, {Metasploit::ERD::Version::PATCH}, and optionally, the
|
22
|
+
# `Metasploit::ERD::Version::PRERELEASE` in the
|
19
23
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
20
24
|
#
|
21
25
|
# @return [String] '{Metasploit::ERD::Version::MAJOR}.{Metasploit::ERD::Version::MINOR}.{Metasploit::ERD::Version::PATCH}'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-erd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luke Imhoff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -193,9 +193,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
193
193
|
version: '2.1'
|
194
194
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
195
195
|
requirements:
|
196
|
-
- - "
|
196
|
+
- - ">="
|
197
197
|
- !ruby/object:Gem::Version
|
198
|
-
version:
|
198
|
+
version: '0'
|
199
199
|
requirements: []
|
200
200
|
rubyforge_project:
|
201
201
|
rubygems_version: 2.4.3
|