Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: joke2k/faker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.14
Choose a base ref
...
head repository: joke2k/faker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.15
Choose a head ref
  • 2 commits
  • 7 files changed
  • 1 contributor

Commits on May 14, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    mlschroe Michael Schroeder
    Copy the full SHA
    407932e View commit details
  2. Copy the full SHA
    2c1b6db View commit details
Showing with 14 additions and 9 deletions.
  1. +1 −1 .bumpversion.cfg
  2. +5 −0 CHANGELOG.rst
  3. +2 −2 docs/conf.py
  4. +1 −1 faker/__init__.py
  5. +1 −1 faker/cli.py
  6. +3 −3 faker/factory.py
  7. +1 −1 setup.py
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.14
current_version = 0.8.15
files = setup.py faker/__init__.py docs/conf.py
commit = True
tag = True
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

`0.8.15 - 14-May-2018 <https://github.com/joke2k/faker/compare/v0.8.14...v0.8.15>`__
------------------------------------------------------------------------------------

* Change logging level to ``DEBUG``.

`0.8.14 - 11-May-2018 <https://github.com/joke2k/faker/compare/v0.8.13...v0.8.14>`__
------------------------------------------------------------------------------------

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '0.8.14'
version = '0.8.15'
# The full version, including alpha/beta/rc tags.
release = '0.8.14'
release = '0.8.15'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2 changes: 1 addition & 1 deletion faker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = '0.8.14'
VERSION = '0.8.15'

from faker.generator import Generator
from faker.factory import Factory
2 changes: 1 addition & 1 deletion faker/cli.py
Original file line number Diff line number Diff line change
@@ -247,7 +247,7 @@ def execute(self):
arguments = parser.parse_args(self.argv[1:])

if arguments.verbose:
logging.basicConfig(level=logging.INFO)
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.CRITICAL)

6 changes: 3 additions & 3 deletions faker/factory.py
Original file line number Diff line number Diff line change
@@ -101,14 +101,14 @@ def _find_provider_class(cls, provider_path, locale=None):
unavailable_locale = locale
locale = getattr(
provider_module, 'default_locale', DEFAULT_LOCALE)
logger.warning('Specified locale `{}` is not available for '
logger.debug('Specified locale `{}` is not available for '
'provider `{}`. Locale reset to `{}` for this '
'provider.'.format(unavailable_locale,
provider_module.__name__,
locale)
)
else:
logger.info('Provider `{}` has been localized to `{}`.'.format(
logger.debug('Provider `{}` has been localized to `{}`.'.format(
provider_module.__name__, locale))

path = "{provider_path}.{locale}".format(
@@ -119,7 +119,7 @@ def _find_provider_class(cls, provider_path, locale=None):

else:

logger.info('Provider `{}` does not feature localization. '
logger.debug('Provider `{}` does not feature localization. '
'Specified locale `{}` is not utilized for this '
'provider.'.format(
provider_module.__name__, locale)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
README = fp.read()


version = '0.8.14'
version = '0.8.15'

# this module can be zip-safe if the zipimporter implements iter_modules or if
# pkgutil.iter_importer_modules has registered a dispatch for the zipimporter.