Skip to content

Commit 6a83a1b

Browse files
authored
Merge pull request #899 from cookiejar/release/1.4.0
Release/1.4.0
2 parents d6a3baf + 1572925 commit 6a83a1b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1047
-930
lines changed

.cookietemple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ language: python
44
project_slug: cookietemple
55
project_slug_no_hyphen: cookietemple
66
project_short_description: A cookiecutter based project template creation tool supporting several domains and languages with linting and template sync support.
7-
version: 1.3.11
7+
version: 1.4.0
88
license: Apache2.0
99
template_version: '2.0.0 # <<COOKIETEMPLE_NO_BUMP>>'
1010
template_handle: cli-python

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
22
select = B,E,F,W
3-
ignore = E203,E501,RST201,RST203,RST301,W503,D100,DAR,W605
3+
ignore = E203,E501,RST201,RST203,RST301,W503,D100,DAR,W605,B018
44
max-line-length = 120
55
max-complexity = 15
66
exclude = cookietemple/create/templates

.github/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name-template: "1.3.11 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
2-
tag-template: 1.3.11 # <<COOKIETEMPLE_FORCE_BUMP>>
1+
name-template: "1.4.0 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
2+
tag-template: 1.4.0 # <<COOKIETEMPLE_FORCE_BUMP>>
33
exclude-labels:
44
- "skip-changelog"
55

.github/workflows/build_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
python: [3.8, 3.9]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
name: Check out source-code repository
1717

1818
- name: Setup Python
19-
uses: actions/setup-python@v2.3.0
19+
uses: actions/setup-python@v3
2020
with:
2121
python-version: ${{ matrix.python }}
2222

.github/workflows/check_no_SNAPSHOT_master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Setup Python
13-
uses: actions/setup-python@v2.3.0
13+
uses: actions/setup-python@v3
1414
with:
1515
python-version: 3.8
1616

.github/workflows/create_cli_java.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
python: [3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
name: Check out source-code repository
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v2.3.0
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: ${{ matrix.python }}
2929

@@ -33,15 +33,15 @@ jobs:
3333
- name: Build package
3434
run: make install
3535

36-
- uses: actions/checkout@v2
36+
- uses: actions/checkout@v3
3737
- uses: DeLaGuardo/setup-graalvm@48f2bf339ab7d35e31029b1822a213681fdfc42e
3838
with:
3939
graalvm-version: "20.1.0.java11"
4040
- run: java -version
4141
- run: gu install native-image
4242

4343
- name: Create cli-java Template
44-
run: echo -e "\n\033[B\nHomer\nhomer.simpson@hotmail.com\nhomergithub\nnExplodingSpringfield\ndescription\n1.0.0\n\ngroup_domain\ngroup_organization\nn" | poetry run cookietemple create
44+
run: echo -e "\n\033[B\nHomer\nhomer.simpson@hotmail.com\nhomergithub\n\nnExplodingSpringfield\ndescription\n1.0.0\n\ngroup_domain\ngroup_organization\nn" | poetry run cookietemple create
4545

4646
- name: Build with Gradle
4747
run: |

.github/workflows/create_cli_python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
python: [3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
name: Check out source-code repository
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v2.3.0
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: ${{ matrix.python }}
2929

@@ -34,7 +34,7 @@ jobs:
3434
run: make install
3535

3636
- name: Create cli-python Template
37-
run: echo -e "\n\nHomer\nsimpson@gmail.com\nhomergithub\nnExplodingSpringfield\ndescription\n1.0.0\n\nn" | poetry run cookietemple create
37+
run: echo -e "\n\nHomer\nsimpson@gmail.com\nhomergithub\n\nnExplodingSpringfield\ndescription\n1.0.0\n\nn" | poetry run cookietemple create
3838

3939
- name: Install nox and the nox poetry extension
4040
run: pip install nox nox-poetry rich

.github/workflows/create_gui_java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
python: [3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
name: Check out source-code repository
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v2.3.0
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: ${{ matrix.python }}
2929

@@ -34,7 +34,7 @@ jobs:
3434
run: make install
3535

3636
- name: Create gui-java Template
37-
run: echo -e "\033[B\033[B\n\nHomer\nhomer.simpson@hotmail.com\nhomergithub\nnExplodingSpringfield\ndescription\n1.0.0\n\nburnsorga\nn" | poetry run cookietemple create
37+
run: echo -e "\033[B\033[B\n\nHomer\nhomer.simpson@hotmail.com\nhomergithub\n\nnExplodingSpringfield\ndescription\n1.0.0\n\nburnsorga\nn" | poetry run cookietemple create
3838

3939
- name: Set up JDK 11
4040
uses: actions/setup-java@v1

.github/workflows/create_lib_cpp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
python: [3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
name: Check out source-code repository
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v2.3.0
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: ${{ matrix.python }}
2929

@@ -34,7 +34,7 @@ jobs:
3434
run: make install
3535

3636
- name: Create lib-cpp Template
37-
run: echo -e "\033[B\n\nHomer\nhomer.simpson@hotmail.com\nhomergithub\nnExplodingSpringfield\ndescription\n\n\nn\n\n" | poetry run cookietemple create
37+
run: echo -e "\033[B\n\nHomer\nhomer.simpson@hotmail.com\nhomergithub\n\nnExplodingSpringfield\ndescription\n\n\nn\n\n" | poetry run cookietemple create
3838

3939
- name: Build Package
4040
run: |

.github/workflows/create_pub_thesis_latex.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
python: [3.8, 3.9]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
name: Check out source-code repository
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@v2.3.0
26+
uses: actions/setup-python@v3
2727
with:
2828
python-version: ${{ matrix.python }}
2929

@@ -34,7 +34,7 @@ jobs:
3434
run: make install
3535

3636
- name: Create pub-thesis-latex Template
37-
run: echo -e "\033[B\033[B\033[B\033[B\n\nHomer\nhomersimpson@gmail.com\nhomergithub\nnhomerauthor\nExplodingSpringfield\nTitle\nSpringfieldUniversity\nNuclearDepartment\nPhD\nn" | poetry run cookietemple create
37+
run: echo -e "\033[B\033[B\033[B\033[B\n\nHomer\nhomersimpson@gmail.com\nhomergithub\n\nnhomerauthor\nExplodingSpringfield\nTitle\nSpringfieldUniversity\nNuclearDepartment\nPhD\nn" | poetry run cookietemple create
3838

3939
- name: Build thesis
4040
uses: xu-cheng/latex-action@master

0 commit comments

Comments
 (0)