-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON support and BumpVersion #9
base: main
Are you sure you want to change the base?
Changes from all commits
f811294
d80b6f1
584d99a
494804d
d133270
1de0e63
5b68f65
bc31dc9
317f51b
758edfb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,7 @@ | ||||||||||||
package version | ||||||||||||
|
||||||||||||
import ( | ||||||||||||
"encoding/json" | ||||||||||||
"fmt" | ||||||||||||
"regexp" | ||||||||||||
"strings" | ||||||||||||
|
@@ -156,3 +157,51 @@ func constraintPessimistic(v, c *Version) bool { | |||||||||||
|
||||||||||||
return true | ||||||||||||
} | ||||||||||||
|
||||||||||||
// MarshalJSON - implement the json-Marshaler interface | ||||||||||||
func (c *Constraints) MarshalJSON() ([]byte, error) { | ||||||||||||
return json.Marshal(c.String()) | ||||||||||||
} | ||||||||||||
|
||||||||||||
// UnmarshalJSON - implement the json-Unmarshaler interface | ||||||||||||
func (c *Constraints) UnmarshalJSON(data []byte) (err error) { | ||||||||||||
var constraintStr string | ||||||||||||
var nc Constraints | ||||||||||||
|
||||||||||||
err = json.Unmarshal(data, &constraintStr) | ||||||||||||
if err != nil { | ||||||||||||
return | ||||||||||||
} | ||||||||||||
|
||||||||||||
nc, err = NewConstraint(constraintStr) | ||||||||||||
if err != nil { | ||||||||||||
return | ||||||||||||
} | ||||||||||||
*c = nc | ||||||||||||
|
||||||||||||
return | ||||||||||||
} | ||||||||||||
|
||||||||||||
// MarshalYAML - implement the YAML-Marshaler interface (gopkg.in/yaml.v2) | ||||||||||||
func (c *Constraints) MarshalYAML() (str interface{}, err error) { | ||||||||||||
str = c.String() | ||||||||||||
return | ||||||||||||
Comment on lines
+186
to
+188
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
} | ||||||||||||
|
||||||||||||
// UnmarshalYAML - implement the yaml-Unmarshaler interface (gopkg.in/yaml.v2) | ||||||||||||
func (c *Constraints) UnmarshalYAML(unmarshal func(interface{}) error) (err error) { | ||||||||||||
var constraintStr string | ||||||||||||
var nc Constraints | ||||||||||||
|
||||||||||||
if err = unmarshal(&constraintStr); err != nil { | ||||||||||||
return | ||||||||||||
} | ||||||||||||
|
||||||||||||
nc, err = NewConstraint(constraintStr) | ||||||||||||
if err != nil { | ||||||||||||
Comment on lines
+200
to
+201
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
return | ||||||||||||
} | ||||||||||||
*c = nc | ||||||||||||
|
||||||||||||
return | ||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,6 +2,7 @@ package version | |||||||||||||||||||||||||
|
||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||
"bytes" | ||||||||||||||||||||||||||
"encoding/json" | ||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||
"reflect" | ||||||||||||||||||||||||||
"regexp" | ||||||||||||||||||||||||||
|
@@ -19,6 +20,20 @@ const VersionRegexpRaw string = `([0-9]+(\.[0-9]+){0,2})` + | |||||||||||||||||||||||||
`(\+([0-9A-Za-z\-]+(\.[0-9A-Za-z\-]+)*))?` + | ||||||||||||||||||||||||||
`?` | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
type VersionPart int | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const ( | ||||||||||||||||||||||||||
MajorPart VersionPart = iota | ||||||||||||||||||||||||||
MinorPart | ||||||||||||||||||||||||||
PatchPart | ||||||||||||||||||||||||||
PreReleasePart | ||||||||||||||||||||||||||
MetadataPart | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
var partNames = [...]string{ | ||||||||||||||||||||||||||
"major", "minor", "patch", "prerelease", "metadata", | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// Version represents a single version. | ||||||||||||||||||||||||||
type Version struct { | ||||||||||||||||||||||||||
metadata string | ||||||||||||||||||||||||||
|
@@ -249,3 +264,61 @@ func (v *Version) String() string { | |||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return buf.String() | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// BumpVersion - increment the indicated part by one | ||||||||||||||||||||||||||
// part may be one of: MajorPart, MinorPart or PatchPart | ||||||||||||||||||||||||||
func (v *Version) BumpVersion(part VersionPart) (err error) { | ||||||||||||||||||||||||||
switch part { | ||||||||||||||||||||||||||
case MajorPart, MinorPart, PatchPart: | ||||||||||||||||||||||||||
v.segments[part]++ | ||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||
err = fmt.Errorf("unable to bump version part %s", partNames[part]) | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// MarshalJSON - implement the json-Marshaler interface | ||||||||||||||||||||||||||
func (v *Version) MarshalJSON() ([]byte, error) { | ||||||||||||||||||||||||||
return []byte(fmt.Sprintf(`"%s"`, v.String())), nil | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// UnmarshalJSON - implement the json-Unmarshaler interface | ||||||||||||||||||||||||||
func (v *Version) UnmarshalJSON(data []byte) (err error) { | ||||||||||||||||||||||||||
var verStr string | ||||||||||||||||||||||||||
var nv *Version | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
err = json.Unmarshal(data, &verStr) | ||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
nv, err = NewVersion(verStr) | ||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||
Comment on lines
+290
to
+296
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
*v = *nv | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// MarshalYAML - implement the YAML-Marshaler interface (gopkg.in/yaml.v2) | ||||||||||||||||||||||||||
func (v *Version) MarshalYAML() (str interface{}, err error) { | ||||||||||||||||||||||||||
str = v.String() | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
Comment on lines
+305
to
+308
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
// UnmarshalYAML - implement the yaml-Unmarshaler interface (gopkg.in/yaml.v2) | ||||||||||||||||||||||||||
func (v *Version) UnmarshalYAML(unmarshal func(interface{}) error) (err error) { | ||||||||||||||||||||||||||
var ( | ||||||||||||||||||||||||||
verStr string | ||||||||||||||||||||||||||
nv *Version | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
if err = unmarshal(&verStr); err != nil { | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
if nv, err = NewVersion(verStr); err != nil { | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
*v = *nv | ||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.