diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..b65025b --- /dev/null +++ b/AUTHORS @@ -0,0 +1,10 @@ +# This is the official list of jSymVer authors for copyright purposes. +# The format is: +# +# Name Name Name (github nickname) +# + +Kenduck (kenduck) +Larry Bordowitz (lbordowitz) +Martin Rüegg (martin.rueegg) +Zafar Khaja (zafarkhaja) diff --git a/CHANGELOG.md b/CHANGELOG.md index e403192..1602679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Java SemVer Changelog ===================== +### 0.11.0 (Oct 29, 2016) ### +* [Support long versions](https://github.com/lbordowitz/jsemver/commit/38bacfe8c1331b3cb5dfebb5639e6aee51e9b79e) + +### 0.10.0 (Oct 24, 2016) ### +* [Add methods for checking major and minor compatibility](https://github.com/zafarkhaja/jsemver/commit/f6abcf5dd79ea9ee8e076cdeff71644012c1f7ac) +* [Fix Travis build](https://github.com/zafarkhaja/jsemver/commit/a34d6f2a7631d576304b91e6e388cd0c776edd58) +* [Upgrade the POM for easy deployment](https://github.com/zafarkhaja/jsemver/commit/2a77345c5f5a58aa67edb675b437bb5b2eb17e10) +* [Fix a typo in CHANGELOG](https://github.com/zafarkhaja/jsemver/commit/c1de46d8b62fe0aa0df08d89424060a894335eb6) + +### 0.9.1 (Sep 18, 2015) ### +* [Convert to Eclipse plugin](https://github.com/OSSIndex/jsemver/commit/ac1d5121e3e2e2a11de67347de4044ce615523d9) + ### 0.9.0 (Mar 19, 2015) ### * [[#7](https://github.com/zafarkhaja/jsemver/issues/6)] Implemented internal DSL for the SemVer Expressions and Ranges * [[PR#18](https://github.com/zafarkhaja/jsemver/pull/18)] Introduced partial compatibility with `node-semver` ranges diff --git a/LICENSE b/LICENSE index 9137095..e52a5e6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License -Copyright 2012-2016 Zafar Khaja . +Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF index 3cf33d2..b711183 100644 --- a/META-INF/MANIFEST.MF +++ b/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: jsemver Bundle-SymbolicName: jsemver -Bundle-Version: 0.9.0.qualifier +Bundle-Version: 0.11.0.qualifier Export-Package: com.github.zafarkhaja.semver, com.github.zafarkhaja.semver.expr, com.github.zafarkhaja.semver.util diff --git a/README.md b/README.md index 060281f..0f7f514 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -Java SemVer v0.9.0 (SemVer 2) [![Build Status](https://travis-ci.org/zafarkhaja/jsemver.png)](https://travis-ci.org/zafarkhaja/jsemver) +Java SemVer v0.11.0 (for SemVer 2) [![Build Status](https://travis-ci.org/zafarkhaja/jsemver.png)](https://travis-ci.org/zafarkhaja/jsemver) ============================ Java SemVer is a Java implementation of the Semantic Versioning Specification -(http://semver.org/). +([http://semver.org](http://semver.org/spec/v2.0.0.html)). ### Versioning ### Java SemVer is versioned according to the SemVer Specification. diff --git a/pom.xml b/pom.xml index abffaa4..3ca30f4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.zafarkhaja jsemver - 0.11.1 + 0.11.0 jar Java SemVer diff --git a/src/main/java/com/github/zafarkhaja/semver/MetadataVersion.java b/src/main/java/com/github/zafarkhaja/semver/MetadataVersion.java index b3669ca..144fc3d 100644 --- a/src/main/java/com/github/zafarkhaja/semver/MetadataVersion.java +++ b/src/main/java/com/github/zafarkhaja/semver/MetadataVersion.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/NormalVersion.java b/src/main/java/com/github/zafarkhaja/semver/NormalVersion.java index f05b792..7098a8d 100644 --- a/src/main/java/com/github/zafarkhaja/semver/NormalVersion.java +++ b/src/main/java/com/github/zafarkhaja/semver/NormalVersion.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/ParseException.java b/src/main/java/com/github/zafarkhaja/semver/ParseException.java index 6596b87..11943d2 100644 --- a/src/main/java/com/github/zafarkhaja/semver/ParseException.java +++ b/src/main/java/com/github/zafarkhaja/semver/ParseException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/Parser.java b/src/main/java/com/github/zafarkhaja/semver/Parser.java index aae3552..e6cd672 100644 --- a/src/main/java/com/github/zafarkhaja/semver/Parser.java +++ b/src/main/java/com/github/zafarkhaja/semver/Parser.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/UnexpectedCharacterException.java b/src/main/java/com/github/zafarkhaja/semver/UnexpectedCharacterException.java index 5bf127e..dd9981c 100644 --- a/src/main/java/com/github/zafarkhaja/semver/UnexpectedCharacterException.java +++ b/src/main/java/com/github/zafarkhaja/semver/UnexpectedCharacterException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/Version.java b/src/main/java/com/github/zafarkhaja/semver/Version.java index 61d0b9e..ad47aec 100644 --- a/src/main/java/com/github/zafarkhaja/semver/Version.java +++ b/src/main/java/com/github/zafarkhaja/semver/Version.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/VersionParser.java b/src/main/java/com/github/zafarkhaja/semver/VersionParser.java index b48ccca..3fcc8a8 100644 --- a/src/main/java/com/github/zafarkhaja/semver/VersionParser.java +++ b/src/main/java/com/github/zafarkhaja/semver/VersionParser.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/And.java b/src/main/java/com/github/zafarkhaja/semver/expr/And.java index 25df27f..d826d25 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/And.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/And.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/CompositeExpression.java b/src/main/java/com/github/zafarkhaja/semver/expr/CompositeExpression.java index ec8cf79..22127de 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/CompositeExpression.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/CompositeExpression.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Equal.java b/src/main/java/com/github/zafarkhaja/semver/expr/Equal.java index f08d95d..54c046f 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Equal.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Equal.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Expression.java b/src/main/java/com/github/zafarkhaja/semver/expr/Expression.java index ae9c53f..4ac4b00 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Expression.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Expression.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/ExpressionParser.java b/src/main/java/com/github/zafarkhaja/semver/expr/ExpressionParser.java index 7104590..34ebc8b 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/ExpressionParser.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/ExpressionParser.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Greater.java b/src/main/java/com/github/zafarkhaja/semver/expr/Greater.java index 8792186..b432fb9 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Greater.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Greater.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/GreaterOrEqual.java b/src/main/java/com/github/zafarkhaja/semver/expr/GreaterOrEqual.java index bf5a032..894e2bc 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/GreaterOrEqual.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/GreaterOrEqual.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Less.java b/src/main/java/com/github/zafarkhaja/semver/expr/Less.java index df17f86..deb460d 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Less.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Less.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/LessOrEqual.java b/src/main/java/com/github/zafarkhaja/semver/expr/LessOrEqual.java index 27edfec..ba16d12 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/LessOrEqual.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/LessOrEqual.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Lexer.java b/src/main/java/com/github/zafarkhaja/semver/expr/Lexer.java index 3f70fdf..904677e 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Lexer.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Lexer.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/LexerException.java b/src/main/java/com/github/zafarkhaja/semver/expr/LexerException.java index 5f7e899..bbc8b6e 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/LexerException.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/LexerException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Not.java b/src/main/java/com/github/zafarkhaja/semver/expr/Not.java index d28dc81..e501f57 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Not.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Not.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/NotEqual.java b/src/main/java/com/github/zafarkhaja/semver/expr/NotEqual.java index 0828632..5701c00 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/NotEqual.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/NotEqual.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/Or.java b/src/main/java/com/github/zafarkhaja/semver/expr/Or.java index 8a60341..942a880 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/Or.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/Or.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/UnexpectedTokenException.java b/src/main/java/com/github/zafarkhaja/semver/expr/UnexpectedTokenException.java index 862ba88..f820553 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/UnexpectedTokenException.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/UnexpectedTokenException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/expr/package-info.java b/src/main/java/com/github/zafarkhaja/semver/expr/package-info.java index f921def..b9216d5 100644 --- a/src/main/java/com/github/zafarkhaja/semver/expr/package-info.java +++ b/src/main/java/com/github/zafarkhaja/semver/expr/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/package-info.java b/src/main/java/com/github/zafarkhaja/semver/package-info.java index 9a43bc4..aed66f4 100644 --- a/src/main/java/com/github/zafarkhaja/semver/package-info.java +++ b/src/main/java/com/github/zafarkhaja/semver/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/util/Stream.java b/src/main/java/com/github/zafarkhaja/semver/util/Stream.java index fe76888..35d60c3 100644 --- a/src/main/java/com/github/zafarkhaja/semver/util/Stream.java +++ b/src/main/java/com/github/zafarkhaja/semver/util/Stream.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/util/UnexpectedElementException.java b/src/main/java/com/github/zafarkhaja/semver/util/UnexpectedElementException.java index c18941c..929c7c4 100644 --- a/src/main/java/com/github/zafarkhaja/semver/util/UnexpectedElementException.java +++ b/src/main/java/com/github/zafarkhaja/semver/util/UnexpectedElementException.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/zafarkhaja/semver/util/package-info.java b/src/main/java/com/github/zafarkhaja/semver/util/package-info.java index a2b99f1..709679c 100644 --- a/src/main/java/com/github/zafarkhaja/semver/util/package-info.java +++ b/src/main/java/com/github/zafarkhaja/semver/util/package-info.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2015 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/MetadataVersionTest.java b/src/test/java/com/github/zafarkhaja/semver/MetadataVersionTest.java index 06d557e..326d8de 100644 --- a/src/test/java/com/github/zafarkhaja/semver/MetadataVersionTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/MetadataVersionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/NormalVersionTest.java b/src/test/java/com/github/zafarkhaja/semver/NormalVersionTest.java index 307a983..843fd68 100644 --- a/src/test/java/com/github/zafarkhaja/semver/NormalVersionTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/NormalVersionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/ParserErrorHandlingTest.java b/src/test/java/com/github/zafarkhaja/semver/ParserErrorHandlingTest.java index 8132a85..acad315 100644 --- a/src/test/java/com/github/zafarkhaja/semver/ParserErrorHandlingTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/ParserErrorHandlingTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/VersionParserCharTypeTest.java b/src/test/java/com/github/zafarkhaja/semver/VersionParserCharTypeTest.java index 6d64886..50f19e3 100644 --- a/src/test/java/com/github/zafarkhaja/semver/VersionParserCharTypeTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/VersionParserCharTypeTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/VersionParserTest.java b/src/test/java/com/github/zafarkhaja/semver/VersionParserTest.java index cce562d..44eef64 100644 --- a/src/test/java/com/github/zafarkhaja/semver/VersionParserTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/VersionParserTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/VersionTest.java b/src/test/java/com/github/zafarkhaja/semver/VersionTest.java index 2195418..236502f 100644 --- a/src/test/java/com/github/zafarkhaja/semver/VersionTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/VersionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/AndTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/AndTest.java index d99725c..5b19749 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/AndTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/AndTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/CompositeExpressionTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/CompositeExpressionTest.java index 7597919..72028ea 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/CompositeExpressionTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/CompositeExpressionTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/EqualTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/EqualTest.java index 8e9a322..79c7b22 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/EqualTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/EqualTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/ExpressionParserTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/ExpressionParserTest.java index 540380c..029167c 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/ExpressionParserTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/ExpressionParserTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/GreaterOrEqualTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/GreaterOrEqualTest.java index f3d9cd2..a326293 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/GreaterOrEqualTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/GreaterOrEqualTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/GreaterTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/GreaterTest.java index a9d03b7..8923586 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/GreaterTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/GreaterTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/LessOrEqualTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/LessOrEqualTest.java index 3c607ea..221aa7e 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/LessOrEqualTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/LessOrEqualTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/LessTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/LessTest.java index 7103770..1ec84f8 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/LessTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/LessTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/LexerTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/LexerTest.java index 777249c..8161daa 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/LexerTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/LexerTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/LexerTokenTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/LexerTokenTest.java index 244d882..8e0bf1c 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/LexerTokenTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/LexerTokenTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/NotEqualTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/NotEqualTest.java index a0305e5..3b24091 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/NotEqualTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/NotEqualTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/NotTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/NotTest.java index 9d9b3b3..a67451a 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/NotTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/NotTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/OrTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/OrTest.java index 2a3ef92..45dacef 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/OrTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/OrTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/expr/ParserErrorHandlingTest.java b/src/test/java/com/github/zafarkhaja/semver/expr/ParserErrorHandlingTest.java index 3b3d1db..8f43ead 100644 --- a/src/test/java/com/github/zafarkhaja/semver/expr/ParserErrorHandlingTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/expr/ParserErrorHandlingTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/zafarkhaja/semver/util/StreamTest.java b/src/test/java/com/github/zafarkhaja/semver/util/StreamTest.java index d170605..0fee9ab 100644 --- a/src/test/java/com/github/zafarkhaja/semver/util/StreamTest.java +++ b/src/test/java/com/github/zafarkhaja/semver/util/StreamTest.java @@ -1,7 +1,7 @@ /* * The MIT License * - * Copyright 2012-2014 Zafar Khaja . + * Copyright 2012-2017 The jSemVer Authors (see AUTHORS file in root of project). * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal