Skip to content

Commit

Permalink
Repository migration => s_ianunruh/hvac_hvac/hvac_g (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwecan committed Jul 20, 2018
1 parent 161070a commit f5d22b7
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ See the [Advanced Usage](https://hvac.readthedocs.io/en/latest/advanced_usage.ht

IMPROVEMENTS:

* sphinx documentation and [readthedocs.io project](https://hvac.readthedocs.io/en/latest/) added. [GH-222](https://github.com/ianunruh/hvac/pull/222)
* README.md included in setuptools metadata. [GH-222](https://github.com/ianunruh/hvac/pull/222)
* All `tune_secret_backend()` parameters now accepted. [GH-215](https://github.com/ianunruh/hvac/pull/215)
* Add `read_lease()` method [GH-218](https://github.com/ianunruh/hvac/pull/218)
* Added adapter module with `Request` class to abstract HTTP requests away from the `Client` class. [GH-223](https://github.com/ianunruh/hvac/pull/223)
* sphinx documentation and [readthedocs.io project](https://hvac.readthedocs.io/en/latest/) added. [GH-222](https://github.com/hvac/hvac/pull/222)
* README.md included in setuptools metadata. [GH-222](https://github.com/hvac/hvac/pull/222)
* All `tune_secret_backend()` parameters now accepted. [GH-215](https://github.com/hvac/hvac/pull/215)
* Add `read_lease()` method [GH-218](https://github.com/hvac/hvac/pull/218)
* Added adapter module with `Request` class to abstract HTTP requests away from the `Client` class. [GH-223](https://github.com/hvac/hvac/pull/223)

Thanks to @bbayszczak, @jvanbrunschot-coolblue for their lovely contributions.

Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The follow list uses version number `0.6.2`, this string should be updated to ma
```
git checkout -b master_v0-6-2
```
- [ ] Update [CHANGELOG.md](CHANGELOG.md) with a list of the included changes. Those changes can be reviewed, and their associated GitHub PR number confirmed, via GitHub's pull request diff using the previous version's tag. E.g.: [https://github.com/ianunruh/hvac/compare/v0.6.1...master](https://github.com/ianunruh/hvac/compare/v0.6.1...master)
- [ ] Update [CHANGELOG.md](CHANGELOG.md) with a list of the included changes. Those changes can be reviewed, and their associated GitHub PR number confirmed, via GitHub's pull request diff using the previous version's tag. E.g.: [https://github.com/hvac/hvac/compare/v0.6.1...master](https://github.com/hvac/hvac/compare/v0.6.1...master)
- [ ] Commit the changelog changes:
```
git add CHANGELOG.md
Expand Down Expand Up @@ -78,9 +78,9 @@ The follow list uses version number `0.6.2`, this string should be updated to ma
<verify hvac functionality>
deactivate
```
- [ ] Create a **draft** GitHub release using the contents of the new release version's [CHANGELOG.md](CHANGELOG.md) content: https://github.com/ianunruh/hvac/releases/new
- [ ] Create a **draft** GitHub release using the contents of the new release version's [CHANGELOG.md](CHANGELOG.md) content: https://github.com/hvac/hvac/releases/new
- [ ] Upload the sdist and whl files to the draft GitHub release as attached "binaries".
- [ ] Push up the working branch (`git push`) and open a PR to merge the working branch into master: [https://github.com/ianunruh/hvac/compare/master...master_v0-6-2](https://github.com/ianunruh/hvac/compare/master...master_v0-6-2)
- [ ] Push up the working branch (`git push`) and open a PR to merge the working branch into master: [https://github.com/hvac/hvac/compare/master...master_v0-6-2](https://github.com/hvac/hvac/compare/master...master_v0-6-2)
- [ ] After merging the working branch into master, tag master with the release version and push that up as well:
```
git checkout master
Expand All @@ -104,5 +104,5 @@ The follow list uses version number `0.6.2`, this string should be updated to ma
deactivate
```

- [ ] Publish the draft release on GitHub: [https://github.com/ianunruh/hvac/releases](https://github.com/ianunruh/hvac/releases)
- [ ] Publish the draft release on GitHub: [https://github.com/hvac/hvac/releases](https://github.com/hvac/hvac/releases)
- [ ] Update the [hvac project on readthedocs.io](https://readthedocs.org/dashboard/hvac/versions/), set the "stable" version to the new release and ensure the new tag for the release version is set as "active".
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[HashiCorp](https://hashicorp.com/) [Vault](https://www.vaultproject.io) API client for Python 2/3

[![Travis CI](https://travis-ci.org/ianunruh/hvac.svg?branch=master)](https://travis-ci.org/ianunruh/hvac) [![Latest Version](https://img.shields.io/pypi/v/hvac.svg)](https://pypi.python.org/pypi/hvac/) [![Documentation Status](https://readthedocs.org/projects/hvac/badge/)](https://hvac.readthedocs.io/en/latest/?badge=latest)
[![Travis CI](https://travis-ci.org/hvac/hvac.svg?branch=master)](https://travis-ci.org/hvac/hvac) [![Latest Version](https://img.shields.io/pypi/v/hvac.svg)](https://pypi.python.org/pypi/hvac/) [![Documentation Status](https://readthedocs.org/projects/hvac/badge/)](https://hvac.readthedocs.io/en/latest/?badge=latest)

Tested against Vault v0.1.2 and HEAD. Requires v0.1.2 or later.

Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
hvac: Python Client Library for HashiCorp's Vault
=================================================

Source code repository hosted at `github.com/ianunruh/hvac`_.
Source code repository hosted at `github.com/hvac/hvac`_.

.. toctree::
:glob:
Expand All @@ -25,4 +25,4 @@ Indices and tables
* :ref:`search`


.. _github.com/ianunruh/hvac: https://github.com/ianunruh/hvac/
.. _github.com/hvac/hvac: https://github.com/hvac/hvac/
2 changes: 1 addition & 1 deletion hvac/adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def request(self, method, url, headers=None, **kwargs):
response = self.session.request(method, url, headers=headers,
allow_redirects=False, **_kwargs)

# NOTE(ianunruh): workaround for https://github.com/ianunruh/hvac/issues/51
# NOTE(ianunruh): workaround for https://github.com/hvac/hvac/issues/51
while response.is_redirect and self.allow_redirects:
url = self.urljoin(self.base_uri, response.headers['Location'])
response = self.session.request(method, url, headers=headers,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
long_description_content_type="text/markdown",
author='Ian Unruh',
author_email='ianunruh@gmail.com',
url='https://github.com/ianunruh/hvac',
url='https://github.com/hvac/hvac',
keywords=['hashicorp', 'vault'],
classifiers=['License :: OSI Approved :: Apache Software License'],
packages=find_packages(),
Expand Down

0 comments on commit f5d22b7

Please sign in to comment.