Skip to content

Commit

Permalink
removed references to old name
Browse files Browse the repository at this point in the history
  • Loading branch information
git-afsantos committed Dec 16, 2021
1 parent a9b75f3 commit 04322f0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.0.1](https://github.com/git-afsantos/chelone/releases/tag/v0.0.1) - 2021-12-13
## [0.0.1](https://github.com/git-afsantos/bake-a-py/releases/tag/v0.0.1) - 2021-12-16
### Added
- Support for type checking with `mypy`.
- Support for code style with `flake8`, `black` and `isort`.
- Configuration for `pre-commit` hooks.
- Example `main` entry point.
- GitHub workflows.

### Changed
- Refining package structure.

### Fixed
- Fixed an issue that prevented `pip install -e .` from working.

## [0.0.0](https://github.com/git-afsantos/chelone/releases/tag/v0.0.0) - 2021-12-09
## [0.0.0](https://github.com/git-afsantos/bake-a-py/releases/tag/v0.0.0) - 2021-12-09
Repository creation.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# Constants
###############################################################################

PROJECT = 'chelone'
PYTHON_PKG = 'chelone'
PROJECT = 'bake-a-py'
PYTHON_PKG = 'bakeapy'
HERE = Path(__file__).parent

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion src/chelone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
###############################################################################

try:
__version__ = version('chelone')
__version__ = version('bakeapy')
except PackageNotFoundError: # pragma: no cover
# package is not installed
__version__ = 'unknown'
2 changes: 1 addition & 1 deletion src/chelone/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import sys

from chelone.cli import main
from bakeapy.cli import main

###############################################################################
# Entry Point
Expand Down
2 changes: 1 addition & 1 deletion src/chelone/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import argparse
import sys

from chelone import __version__ as current_version
from bakeapy import __version__ as current_version

###############################################################################
# Argument Parsing
Expand Down
8 changes: 4 additions & 4 deletions tests/test_pkg_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Imports
###############################################################################

import chelone
import bakeapy

###############################################################################
# Tests
Expand All @@ -17,6 +17,6 @@ def test_import_was_ok():


def test_pkg_has_version():
assert hasattr(chelone, '__version__')
assert isinstance(chelone.__version__, str)
assert chelone.__version__ != ''
assert hasattr(bakeapy, '__version__')
assert isinstance(bakeapy.__version__, str)
assert bakeapy.__version__ != ''

0 comments on commit 04322f0

Please sign in to comment.