Skip to content

Commit

Permalink
Invert patch order
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Saporetti Junior committed Oct 9, 2023
1 parent b461038 commit 581a653
Show file tree
Hide file tree
Showing 171 changed files with 307 additions and 305 deletions.
2 changes: 2 additions & 0 deletions gradle/versioning.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ task updateMinor(type: Task) {
group = 'Versioning'
description = 'Increment the build number (minor)'
outputs.upToDateWhen { false }
finalizedBy syncPythonPackages
doLast {
println "Updating the minor number"
exec {
Expand All @@ -49,6 +50,7 @@ task updateMajor(type: Task) {
group = 'Versioning'
description = 'Increment the build number (major)'
outputs.upToDateWhen { false }
finalizedBy syncPythonPackages
doLast {
println "Updating the major number"
exec {
Expand Down
2 changes: 1 addition & 1 deletion modules/cfman/bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "0.9.134"
current_version = "0.9.135"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "++version {old_version} -> {new_version}"
commit = false
Expand Down
2 changes: 1 addition & 1 deletion modules/cfman/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
app_version = '0.9.134'
app_version = '0.9.135'
app_name = 'hspylib-cfman'
2 changes: 1 addition & 1 deletion modules/cfman/src/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Manage your PCF applications

[![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
[![Release](https://badgen.net/badge/release/v0.9.134/gray)](CHANGELOG.md#unreleased)
[![Release](https://badgen.net/badge/release/v0.9.135/gray)](CHANGELOG.md#unreleased)
[![PyPi](https://badgen.net/badge/icon/python?icon=pypi&label)](https://pypi.org/project/hspylib-cfman)
[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/yorevs/hspylib)
[![Gitter](https://badgen.net/badge/icon/gitter?icon=gitter&label)](https://gitter.im/hspylib/community)
Expand Down
4 changes: 2 additions & 2 deletions modules/cfman/src/main/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-cfman v0.9.134
# hspylib-cfman v0.9.135
#
# Package: main
"""Package initialization."""

__all__ = [
'cfman'
]
__version__ = '0.9.134'
__version__ = '0.9.135'
2 changes: 1 addition & 1 deletion modules/cfman/src/main/cfman/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.134
0.9.135
4 changes: 2 additions & 2 deletions modules/cfman/src/main/cfman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-cfman v0.9.134
# hspylib-cfman v0.9.135
#
# Package: main.cfman
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'core',
'exception'
]
__version__ = '0.9.134'
__version__ = '0.9.135'
4 changes: 2 additions & 2 deletions modules/cfman/src/main/cfman/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-cfman v0.9.134
# hspylib-cfman v0.9.135
#
# Package: main.cfman.core
"""Package initialization."""
Expand All @@ -12,4 +12,4 @@
'cf_endpoint',
'cf_manager'
]
__version__ = '0.9.134'
__version__ = '0.9.135'
4 changes: 2 additions & 2 deletions modules/cfman/src/main/cfman/exception/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-cfman v0.9.134
# hspylib-cfman v0.9.135
#
# Package: main.cfman.exception
"""Package initialization."""

__all__ = [
'exceptions'
]
__version__ = '0.9.134'
__version__ = '0.9.135'
4 changes: 2 additions & 2 deletions modules/cfman/src/test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-cfman v0.9.134
# hspylib-cfman v0.9.135
#
# Package: test
"""Package initialization."""

__all__ = [
'test_main'
]
__version__ = '0.9.134'
__version__ = '0.9.135'
2 changes: 1 addition & 1 deletion modules/clitt/bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "0.9.99"
current_version = "0.9.100"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "++version {old_version} -> {new_version}"
commit = false
Expand Down
2 changes: 1 addition & 1 deletion modules/clitt/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
app_version = '0.9.99'
app_version = '0.9.100'
app_name = 'hspylib-clitt'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo
"""Package initialization."""
Expand All @@ -11,4 +11,4 @@
'term',
'tui'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/application/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.application
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'application_demo',
'snake'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.icons
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'emojis',
'font_awesome'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/emojis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.icons.emojis
"""Package initialization."""

__all__ = [
'emojis_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/icons/font_awesome/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.icons.font_awesome
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'awesome_demo',
'demo_icons'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/term/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.term
"""Package initialization."""

__all__ = [
'terminal_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui
"""Package initialization."""
Expand All @@ -15,4 +15,4 @@
'tui_preferences_demo',
'tui_screen_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mchoose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.mchoose
"""Package initialization."""

__all__ = [
'menu_choose_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mdashboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.mdashboard
"""Package initialization."""

__all__ = [
'menu_dashboard_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/menu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.menu
"""Package initialization."""

__all__ = [
'tui_menu_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/minput/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.minput
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'menu_input_demo',
'menu_input_tokens_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/mselect/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.mselect
"""Package initialization."""

__all__ = [
'menu_select_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/demo/tui/table/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: demo.tui.table
"""Package initialization."""

__all__ = [
'table_demo'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
2 changes: 1 addition & 1 deletion modules/clitt/src/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Create professional CLI applications

[![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
[![Release](https://badgen.net/badge/release/v0.9.99/gray)](CHANGELOG.md#unreleased)
[![Release](https://badgen.net/badge/release/v0.9.100/gray)](CHANGELOG.md#unreleased)
[![PyPi](https://badgen.net/badge/icon/python?icon=pypi&label)](https://pypi.org/project/hspylib-clitt)
[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/yorevs/hspylib)
[![Gitter](https://badgen.net/badge/icon/gitter?icon=gitter&label)](https://gitter.im/hspylib/community)
Expand Down
4 changes: 2 additions & 2 deletions modules/clitt/src/main/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main
"""Package initialization."""

__all__ = [
'clitt'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
2 changes: 1 addition & 1 deletion modules/clitt/src/main/clitt/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.99
0.9.100
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main.clitt
"""Package initialization."""
Expand All @@ -10,4 +10,4 @@
'core',
'utils'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main.clitt.addons
"""Package initialization."""
Expand All @@ -9,4 +9,4 @@
'appman',
'widman'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/appman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main.clitt.addons.appman
"""Package initialization."""
Expand All @@ -10,4 +10,4 @@
'appman_enums',
'templates'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main.clitt.addons.appman.templates
"""Package initialization."""

__all__ = [

]
__version__ = '0.9.99'
__version__ = '0.9.100'
4 changes: 2 additions & 2 deletions modules/clitt/src/main/clitt/addons/widman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# _*_ coding: utf-8 _*_
#
# hspylib-clitt v0.9.99
# hspylib-clitt v0.9.100
#
# Package: main.clitt.addons.widman
"""Package initialization."""
Expand All @@ -11,4 +11,4 @@
'widgets',
'widman'
]
__version__ = '0.9.99'
__version__ = '0.9.100'
Loading

0 comments on commit 581a653

Please sign in to comment.