Skip to content

Commit c057c27

Browse files
author
obervinov
authored
Merge pull request #19 from obervinov/fix/v1.0.2
# PR-19: Fix critical bug for module code imoprt via `__init__.py` ## v1.0.2 - 2024-01-24 ### What's Changed **full changelog**: v1.0.1...v1.0.2 by @ obervinov #19 #### 🐛 Bug Fixes * fixed import of main code via `__init__.py`
2 parents 1fde73a + b37f2dd commit c057c27

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
33
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
44

55

6+
## v1.0.2 - 2024-01-24
7+
### What's Changed
8+
**full changelog**: https://github.com/obervinov/messages-package/compare/v1.0.1...v1.0.2 by @ obervinov https://github.com/obervinov/messages-package/pull/19
9+
#### 🐛 Bug Fixes
10+
* fixed import of main code via `__init__.py`
11+
12+
613
## v1.0.1 - 2024-01-20
714
### What's Changed
815
**full changelog**: https://github.com/obervinov/messages-package/compare/v1.0.0...v1.0.1 by @ obervinov https://github.com/obervinov/messages-package/pull/17

messages/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
No need to add anything here. Feel free to delete this line when you make your own package
44
Leave it empty
55
"""
6+
# flake8: noqa
7+
from .messages import *

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "messages"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "This package helps to easily and quickly generate beautiful messages for telegram bots using templates described in json."
55
authors = ["Bervinov Oleg <[email protected]>"]
66
maintainers = ["Bervinov Oleg <[email protected]>"]

0 commit comments

Comments
 (0)