Skip to content

Commit fba234e

Browse files
Merge pull request #1 from ShubhamMandowara/logging
feat: version tut
2 parents d31d817 + 592ef30 commit fba234e

File tree

5 files changed

+17
-0
lines changed

5 files changed

+17
-0
lines changed

version_tut/README.md

Whitespace-only changes.

version_tut/pyproject.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[tool.poetry]
2+
name = "version-tut"
3+
version = "0.1.1"
4+
description = ""
5+
authors = ["shubham Mandowara <[email protected]>"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.10"
10+
11+
12+
[build-system]
13+
requires = ["poetry-core"]
14+
build-backend = "poetry.core.masonry.api"

version_tut/tests/__init__.py

Whitespace-only changes.

version_tut/version_tut/__init__.py

Whitespace-only changes.

version_tut/version_tut/functions.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
def function_to_print():
2+
'''This function is to print new relase'''
3+
print('New Relase')

0 commit comments

Comments
 (0)