Skip to content

Commit 28b347b

Browse files
committed
Rename version to first_version
1 parent 466db12 commit 28b347b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cookiecutter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
77
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
88
"pypi_username": "{{ cookiecutter.github_username }}",
9-
"version": "0.1.0",
9+
"first_version": "0.1.0",
1010
"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}"
1111
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# History
22

3-
## {{ cookiecutter.version }} ({% now 'local' %})
3+
## {{ cookiecutter.first_version }} ({% now 'local' %})
44

55
* First release on PyPI.

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "{{cookiecutter.project_name.lower().replace(' ', '-')}}"
3-
version = "{{ cookiecutter.version }}"
3+
version = "{{ cookiecutter.first_version }}"
44
description = "{{cookiecutter.project_short_description}}"
55
readme = "README.md"
66
authors = [

0 commit comments

Comments
 (0)