Merge pull request #17 from lizroth/repo_move

Move repository from awslabs to aws.
development
lizroth 2018-08-01 15:25:36 -07:00 committed by GitHub
commit b0b67356f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 10 deletions

View File

@ -2,11 +2,16 @@
Changelog
*********
1.0.2 -- 2018-08-01
===================
* Move the ``base64io-python`` repository from ``awslabs`` to ``aws``.
1.0.1 -- 2018-06-12
===================
* Fix minor compatibility issues with ``read()`` and ``__exit__()``
`#6 <https://github.com/awslabs/base64io-python/pull/6>`_
`#6 <https://github.com/aws/base64io-python/pull/6>`_
1.0.0 -- 2018-05-16
===================

View File

@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check [existing open](https://github.com/awslabs/base64io-python/issues), or [recently closed](https://github.com/awslabs/base64io-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
When filing an issue, please check [existing open](https://github.com/aws/base64io-python/issues), or [recently closed](https://github.com/aws/base64io-python/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
* A reproducible test case or series of steps
@ -42,7 +42,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/base64io-python/labels/help%20wanted) issues is a great place to start.
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws/base64io-python/labels/help%20wanted) issues is a great place to start.
## Code of Conduct
@ -57,6 +57,6 @@ If you discover a potential security issue in this project we ask that you notif
## Licensing
See the [LICENSE](https://github.com/awslabs/base64io-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
See the [LICENSE](https://github.com/aws/base64io-python/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

View File

@ -18,8 +18,8 @@ base64io
:target: https://base64io-python.readthedocs.io/en/stable/
:alt: Documentation Status
.. image:: https://travis-ci.org/awslabs/base64io-python.svg?branch=master
:target: https://travis-ci.org/awslabs/base64io-python
.. image:: https://travis-ci.org/aws/base64io-python.svg?branch=master
:target: https://travis-ci.org/aws/base64io-python
.. image:: https://ci.appveyor.com/api/projects/status/ds8xvogp4m70j9ks?svg=true
:target: https://ci.appveyor.com/project/mattsb42-aws/base64io-python-36722
@ -123,5 +123,5 @@ License
This library is licensed under the Apache 2.0 License.
.. _Read the Docs: http://base64io-python.readthedocs.io/en/latest/
.. _GitHub: https://github.com/awslabs/base64io-python/
.. _GitHub: https://github.com/aws/base64io-python/
.. _base64 documentation: https://docs.python.org/3/library/base64.html#base64.decode

View File

@ -6,7 +6,7 @@ environment:
# The only test we perform on Windows are our actual code tests. All linting, static
# analysis, etc are only run on Linux (via Travis CI).
# Disabling pending https://github.com/awslabs/base64io-python/issues/5
# Disabling pending https://github.com/aws/base64io-python/issues/5
# Python 2.6
#- PYTHON: "C:\\Python26"
# TOXENV: "py26"

View File

@ -32,7 +32,7 @@ setup(
version=get_version(),
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/awslabs/base64io-python",
url="https://github.com/aws/base64io-python",
author="Amazon Web Services",
author_email="aws-cryptools@amazon.com",
maintainer="Amazon Web Services",

View File

@ -29,7 +29,7 @@ except ImportError: # pragma: no cover
pass
__all__ = ("Base64IO",)
__version__ = "1.0.1"
__version__ = "1.0.2"
_LOGGER = logging.getLogger(LOGGER_NAME)