Skip to content

Commit 021e383

Browse files
[UPDATE] Version v2.0.8 (Alpha)
Changes in file .github/labeler.yml: * reviewed and updated lable rules Changes in file Makefile: * added some branding Changes in file docs/conf.py: * version bump to v2.0.8-alpha Changes in file multicast/__init__.py: * version bump to v2.0.8-alpha Changes in file setup.cfg: * version bump to v2.0.8-alpha
1 parent 29923d7 commit 021e383

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

.github/labeler.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@ Multicast:
88
- multicast/*.py
99
- LICENSE
1010
- LICENSE.md
11+
- Logo.svg
1112
- pyproject.toml
1213

1314
# Add 'Lint' label to any lint file changes
1415
Linter:
1516
- changed-files:
1617
- any-glob-to-any-file:
18+
- '.ast-grep/**/*.yml'
1719
- .yamllint.conf
20+
- .bandit.yml
1821
- .flake8.ini
22+
- .coveragerc
1923
- .deepsource.toml
24+
- .markdownlint.yml
2025
- tests/check_s*
2126
- tests/check_c*
2227
- tests/check_pip
@@ -29,6 +34,8 @@ Bash Lang:
2934
- tests/check_*
3035
- .github/*.bash
3136
- .github/*.sh
37+
- .github/**/*.bash
38+
- .github/**/*.sh
3239
- .circleci/*.bash
3340
- '*.bash'
3441

@@ -39,10 +46,20 @@ Python Lang:
3946
- '**/*.py'
4047
- '*.py'
4148

49+
# Add 'Lang' label to any python file changes
50+
Make Lang:
51+
- changed-files:
52+
- any-glob-to-any-file:
53+
- '**/*.makefile'
54+
- '**/*.make'
55+
- '**/makefile'
56+
- Makefile
57+
4258
Configs:
4359
- changed-files:
4460
- any-glob-to-any-file:
4561
- '*.yml'
62+
- '*.yaml'
4663
- './**/*.yml'
4764
- './.**/*.yml'
4865
- '*.ini'
@@ -61,6 +78,7 @@ documentation:
6178
- './**/*.md'
6279
- docs/**/*
6380
- docs/*
81+
- README.md
6482

6583
# Add 'test' label
6684
Testing:
@@ -69,6 +87,7 @@ Testing:
6987
- tests/*.py
7088
- tests/requirements.txt
7189
- tests/check_*
90+
- .github/tools/*
7291
- .github/workflows/*.yml
7392
- .circleci/*
7493

@@ -79,10 +98,11 @@ CI:
7998
- tests/requirements.txt
8099
- .travis.yml
81100
- .appveyor.yml
101+
- .github/actions/*/action.yml
82102
- .github/workflows/*
83103
- .circleci/*
84104

85-
Github:
105+
GitHub:
86106
- changed-files:
87107
- any-glob-to-any-file:
88108
- .github/**/*

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,11 @@ build: init ./setup.py MANIFEST.in
194194
init:
195195
$(QUIET)$(PYTHON) -m pip install $(PIP_COMMON_FLAGS) $(PIP_ENV_FLAGS) "pip>=24.3.1" "setuptools>=75.0" "wheel>=0.44" "build>=1.1.1" 2>$(ERROR_LOG_PATH) || :
196196
$(QUIET)$(PYTHON) -m pip install $(PIP_COMMON_FLAGS) $(PIP_ENV_FLAGS) -r requirements.txt 2>$(ERROR_LOG_PATH) || :
197+
$(QUIET)$(ECHO) ""
198+
$(QUIET)$(ECHO) " _ _ "
199+
$(QUIET)$(ECHO) " //\/\ulticast"
200+
$(QUIET)$(ECHO) " "
201+
$(QUIET)$(ECHO) ""
197202
$(QUIET)$(ECHO) "$@: Done."
198203

199204
install: init build

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
# The short X.Y version.
126126
version = "v2.0"
127127
# The full version, including alpha/beta/rc tags.
128-
release = "v2.0.7"
128+
release = "v2.0.8-alpha"
129129

130130
# The language for content autogenerated by Sphinx. Refer to documentation
131131
# for a list of supported languages.

multicast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117

118118
global __version__ # skipcq: PYL-W0604
119119

120-
__version__ = "2.0.7"
120+
__version__ = "2.0.8-alpha"
121121
"""The version of this program.
122122
123123
Minimal Acceptance Testing:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = multicast
3-
version = 2.0.7
3+
version = 2.0.8-alpha
44
author = Mr. Walls
55
author_email = [email protected]
66
description = Multicast Python Module for Send/Recv Stubs.

0 commit comments

Comments
 (0)