Skip to content

Commit 1125b6e

Browse files
authored
from dev - Bump version: 1.0.8 → 1.0.9 into test (#15)
Automatically created pull request for release v1.0.9-dev into test branch.
2 parents 237346e + eba8996 commit 1125b6e

File tree

14 files changed

+1615
-188
lines changed

14 files changed

+1615
-188
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.8
2+
current_version = 1.0.9
33
commit = True
44
tag = False
55

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@ $RECYCLE.BIN/
134134
*.sw?
135135

136136
scripts
137+
*/certs/

.pre-commit-config.yaml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repos:
3737
hooks:
3838
- id: yaml-format
3939
name: yaml-format
40-
entry: python scripts/format_yaml/main.py
40+
entry: python format_yaml/main.py
4141
language: system
4242
types: [yaml]
4343
files: \.(yaml)$
@@ -53,28 +53,35 @@ repos:
5353
# # TODO: Solve error
5454
# - id: yml-format
5555
# name: yml-format
56-
# entry: python scripts/format_yml/main.py
56+
# entry: python format_yml/main.py
5757
# language: system
5858
# types: [yaml]
5959
# files: \.(yml)$
6060
# exclude: '.github/.*'
6161
- id: docker-compose
6262
name: docker-compose
63-
entry: python scripts/validate_docker_compose/main.py
63+
entry: python validate_docker_compose/main.py
6464
language: system
6565
types: [yaml]
6666
files: ^docker-compose(\.dev|\.prod)?\.yml$
6767
- id: commit-msg-version-check
6868
name: commit-msg-version-check
69-
entry: python scripts/commit_msg_version_bump/main.py
69+
entry: python commit_msg_version_bump/main.py
7070
always_run: true
7171
language: system
7272
args: [.git/COMMIT_EDITMSG]
7373
stages: [pre-push]
74+
- id: bump-year
75+
name: bump-year
76+
entry: python bump_year/main.py
77+
always_run: true
78+
pass_filenames: false
79+
language: system
7480
- id: generate-changelog
7581
name: generate-changelog
76-
entry: python scripts/generate_changelog/main.py
82+
entry: python generate_changelog/main.py
7783
always_run: true
84+
pass_filenames: false
7885
language: system
7986
- repo: https://github.com/pre-commit/mirrors-prettier
8087
rev: v4.0.0-alpha.8

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ extension-pkg-whitelist=
3939
fail-on=
4040

4141
# Specify a score threshold under which the program will exit with error.
42-
fail-under=10
42+
fail-under=8
4343

4444
# Interpret the stdin as a python script, whose filename needs to be passed as
4545
# the module_or_package argument.
@@ -402,7 +402,7 @@ preferred-modules=
402402

403403
# The type of string formatting that logging methods do. `old` means using %
404404
# formatting, `new` is for `{}` formatting.
405-
logging-format-style=old
405+
logging-format-style=new
406406

407407
# Logging modules to check that the string format arguments are in logging
408408
# function parameter format.

CHANGELOG.md

Lines changed: 68 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,78 @@
1-
## [1.0.0] - 2024-10-23
1+
## [1.0.8] - 2024-10-27
2+
3+
### Styles
4+
5+
- **core**: fixed confs (`patch candidate`)
26

37
### Other Changes
48

5-
- rebased scripts
6-
- feat: added scripts
7-
- Initial commit
9+
- from prod - from test - from dev - Bump version: 1.0.7 → 1.0.8 into test (#11)Automatically created pull request for release v1.0.8-dev into testbranch. into prod (#12)Automatically created pull request for release v1.0.8-test into prodbranch. into main (#13)
10+
- from test - from dev - Bump version: 1.0.7 → 1.0.8 into test (#11)Automatically created pull request for release v1.0.8-dev into testbranch. into prod (#12)
11+
- from dev - Bump version: 1.0.7 → 1.0.8 into test (#11)
12+
- Bump version: 1.0.7 → 1.0.8
13+
- Update CNAME
14+
- Update CNAME
15+
- Create CNAME
16+
17+
## [1.0.7] - 2024-10-27
18+
19+
### Styles
20+
21+
- **core**: fixed confs (`patch candidate`)
22+
- **core**: fixed confs (`patch candidate`)
23+
- **core**: fixed confs (`patch candidate`)
24+
- **core**: fixed confs (`patch candidate`)
25+
26+
### Other Changes
27+
28+
- from prod - from test - from dev - Bump version: 1.0.6 → 1.0.7 into test (#8)Automatically created pull request for release v1.0.7-dev into testbranch. into prod (#9)Automatically created pull request for release v1.0.7-test into prodbranch. into main (#10)
29+
- from test - from dev - Bump version: 1.0.6 → 1.0.7 into test (#8)Automatically created pull request for release v1.0.7-dev into testbranch. into prod (#9)
30+
- from dev - Bump version: 1.0.6 → 1.0.7 into test (#8)
31+
- Bump version: 1.0.6 → 1.0.7
32+
- Bump version: 1.0.5 → 1.0.6
33+
- Bump version: 1.0.4 → 1.0.5
34+
- Bump version: 1.0.3 → 1.0.4
35+
36+
## [1.0.3] - 2024-10-27
37+
38+
### Styles
839

9-
## [1.0.0] - 2024-10-23
40+
- **core**: added readme file (`patch candidate`)
41+
- **core**: added readme file (`patch candidate`)
1042

1143
### Other Changes
1244

45+
- from prod - from test - from dev - Bump version: 1.0.2 → 1.0.3 into test (#5)Automatically created pull request for release v1.0.3-dev into testbranch. into prod (#6)Automatically created pull request for release v1.0.3-test into prodbranch. into main (#7)
46+
- from test - from dev - Bump version: 1.0.2 → 1.0.3 into test (#5)Automatically created pull request for release v1.0.3-dev into testbranch. into prod (#6)
47+
- from dev - Bump version: 1.0.2 → 1.0.3 into test (#5)
48+
- Bump version: 1.0.2 → 1.0.3
49+
- Bump version: 1.0.1 → 1.0.2
50+
- style(core): added readme file
51+
52+
## [1.0.1] - 2024-10-27
53+
54+
### Features
55+
56+
- **core**: add cicd flows (`patch candidate`)
57+
58+
### Other Changes
59+
60+
- from prod - from test - from dev - Bump version: 1.0.0 → 1.0.1 into test (#1)Automatically created pull request for release v1.0.1-dev into testbranch. into prod (#2)Automatically created pull request for release v1.0.1-test into prodbranch. into main (#3)
61+
- from test - from dev - Bump version: 1.0.0 → 1.0.1 into test (#1)Automatically created pull request for release v1.0.1-dev into testbranch. into prod (#2)
62+
- from dev - Bump version: 1.0.0 → 1.0.1 into test (#1)
63+
- Bump version: 1.0.0 → 1.0.1
64+
- feat(core): fix cicd flows
65+
- feat(core): added cicd flows
1366
- rebased scripts
1467
- feat: added scripts
1568
- Initial commit
69+
70+
## [Unreleased] - 2024-10-27
71+
72+
### Chores
73+
74+
- **style**: fixed bump year flow (`patch candidate`)
75+
76+
### Other Changes
77+
78+
- chore(core): added crypto controller

INSTALL.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
# Install
1+
## 🔨 Installation
2+
3+
1. Add the scripts repository as a submodule in your project:
4+
5+
```bash
6+
git submodule add https://github.com/JuanVilla424/scripts.git
7+
```
8+
9+
or, using branch
10+
11+
```bash
12+
git submodule add -b <branch_name> https://github.com/JuanVilla424/scripts.git
13+
```
14+
15+
2. Update the submodule when there are changes:
16+
17+
```bash
18+
git submodule update --remote --merge
19+
```

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GNU GENERAL PUBLIC LICENSE
1+
GNU GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

44
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
@@ -531,7 +531,7 @@ patent license (a) in connection with copies of the covered work
531531
conveyed by you (or copies made from those copies), or (b) primarily
532532
for and in connection with specific products or compilations that
533533
contain the covered work, unless you entered into that arrangement,
534-
or that patent license was granted, prior to 28 March 2007.
534+
or that patent license was granted, prior to 28 March 2024.
535535

536536
Nothing in this License shall be construed as excluding or limiting
537537
any implied license or other defenses to infringement that may
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
652652
If the program does terminal interaction, make it output a short
653653
notice like this when it starts in an interactive mode:
654654

655-
<program> Copyright (C) <year> <name of author>
655+
scripts Copyright (C) 2024 Na0nh
656656
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657657
This is free software, and you are welcome to redistribute it
658658
under certain conditions; type `show c' for details.

0 commit comments

Comments
 (0)