Changelog¶
1.1.0 - 2016-04-04¶
- Add optional parameter to
stac.client.ArtifactoryClientand implementations to allow remote repositories to be searched for the latest version of an artifact.
1.0.1 - 2016-03-09¶
- Change
stac.exceptions.NoMatchingVersionsErrorto be a subclass of the basestac.exceptions.StacErrorexception. - Change
stac.util.get_logger()to get thestacnamed logger.
1.0.0 - 2016-02-09¶
- This is the first stable release of Stac. From this point on, all breaking changes will only
be made in major version releases. This release is functionally the same as the
0.3.1release.
0.3.1 - 2016-01-25¶
- Fix instance where
GenericArtifactoryClientwould not correctly handle artifacts without a.in the name.
0.3.0 - 2015-12-24¶
- Breaking change - Rename
MavenArtifactoryClienttoGenericArtifactoryClientand move all Maven- specific logic to a URL generator class that can be injected into it. Users creating the client vianew_maven_clientshouldn’t notice any changes.
0.2.0 - 2015-12-23¶
- Breaking change -
get_latest_versionandget_latest_versionsmethods in the client now return version numbers only. Callers can use theget_version_urlmethod to construct artifact URLs if desired.
0.1.1 - 2015-12-22¶
- Gracefully handle the case when we are looking for the latest SNAPSHOT version but there have not been any integration deploys to a repository. Fixes #1.
0.1.0 - 2015-12-21¶
- Initial release