Skip to content
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

Release/nike internal util/v2.0.0 bookkeeping #73

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version=1.15.3-SNAPSHOT
nikeInternalUtilVersion=1.10.2-SNAPSHOT
nikeInternalUtilVersion=2.0.1-SNAPSHOT
groupId=com.nike.backstopper
nikeInternalUtilGroupId=com.nike.internal
artifactId=backstopper
33 changes: 26 additions & 7 deletions nike-internal-util/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Nike Internal Util Changelog / Release Notes

All notable changes to the `nike-internal-util` library will be documented in this file. `nike-internal-util` adheres to [Semantic Versioning](http://semver.org/).
All notable changes to the `nike-internal-util` library will be documented in this file. `nike-internal-util` adheres
to [Semantic Versioning](http://semver.org/).

Note that the `backstopper-*` libraries are version-independent even though they are currently living in the same repository as `nike-internal-util`. Check out the root [CHANGELOG.md](../CHANGELOG.md) for details on `backstopper-*` library changes. This changelog file is specifically for the `nike-internal-util` library.
Note that the `backstopper-*` libraries are version-independent even though they are currently living in the same
repository as `nike-internal-util`. Check out the root [CHANGELOG.md](../CHANGELOG.md) for details on `backstopper-*`
library changes. This changelog file is specifically for the `nike-internal-util` library.

#### 2.x Releases

- `2.0.x` Releases - [2.0.0](#200)

#### 1.x Releases

Expand All @@ -13,13 +20,24 @@ Note that the `backstopper-*` libraries are version-independent even though they
- `0.10.x` Releases - [0.10.0](#0100)
- `0.9.x` Releases - [0.9.0.1](#0901), [0.9.0](#090)

## [2.0.0](https://github.com/Nike-Inc/backstopper/releases/tag/nike-internal-util-v2.0.0)

Released on 2024-09-13.

### Released major version 2.0.0

- Released version `2.0.0` of `nike-internal-util`.
+ Updated to Java 17 - no functional changes.
+ Changes for `2.0.0` made by [Nic Munroe][contrib_nicmunroe] in pull request
[#72](https://github.com/Nike-Inc/backstopper/pull/72).

## [1.10.1](https://github.com/Nike-Inc/backstopper/releases/tag/nike-internal-util-v1.10.1)

Released on 2024-09-07.

### Graduated to 1.x

- Graduated the version of `nike-internal-util` to `1.10.1` (from `0.10.0`) to reflect the stability and previous work
- Graduated the version of `nike-internal-util` to `1.10.1` (from `0.10.0`) to reflect the stability and previous work
done on the library.

## [0.10.0](https://github.com/Nike-Inc/backstopper/releases/tag/nike-internal-util-v0.10.0)
Expand All @@ -37,7 +55,8 @@ Released on 2016-09-20.

### Fixed

- Version 0.9.0 was unable to be published in bintray, so `nike-internal-util` bintray publishing was split into its own package separate from the backstopper libraries. No functional code changes.
- Version 0.9.0 was unable to be published in bintray, so `nike-internal-util` bintray publishing was split into its own
package separate from the backstopper libraries. No functional code changes.
- Fixed by [Nic Munroe][contrib_nicmunroe].

## [0.9.0](https://github.com/Nike-Inc/backstopper/releases/tag/nike-internal-util-v0.9.0)
Expand All @@ -46,8 +65,8 @@ Released on 2016-09-20.

### Added

- Initial open source code drop for `nike-internal-util`. NOTE: This release never made it to bintray or maven central. Please use 0.9.0.1 instead.
- Added by [Nic Munroe][contrib_nicmunroe].
- Initial open source code drop for `nike-internal-util`. NOTE: This release never made it to bintray or maven central.
Please use 0.9.0.1 instead.
- Added by [Nic Munroe][contrib_nicmunroe].

[contrib_nicmunroe]: https://github.com/nicmunroe
12 changes: 10 additions & 2 deletions nike-internal-util/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Nike Internal Util

Requires Java 17 or later. (If you're needing this for Java 7+ instead, see the
[1.x branch](https://github.com/Nike-Inc/backstopper/tree/v1.x/nike-internal-util).)

This is a small utilities library that provides some reusable helper methods and classes. It is "internal" in the sense that it is not intended to be directly pulled in and used by non-Nike projects. That said you can use it if you want to, just be aware that some liberties might be taken regarding version numbers, backwards compatibility, etc over time when compared with libraries specifically intended for public consumption.
This is a small utilities library that provides some reusable helper methods and classes. It is "internal" in the sense
that it is not intended to be directly pulled in and used by non-Nike projects. That said you can use it if you want to,
just be aware that some liberties might be taken regarding version numbers, backwards compatibility, etc over time when
compared with libraries specifically intended for public consumption.

## Backstopper Info

This library may move into its own repository at some point. For now it's piggybacking on the Backstopper repository. See the [base project README.md](../README.md), [User Guide](../USER_GUIDE.md), and Backstopper repository source code and javadocs for Backstopper information.
This library may move into its own repository at some point. For now it's piggybacking on the Backstopper repository.
See the [base project README.md](../README.md), [User Guide](../USER_GUIDE.md), and Backstopper repository source code
and javadocs for Backstopper information.

## License

Expand Down