Skip to content

Commit

Permalink
Merge pull request EVOLVED-5G#32 from EVOLVED-5G/develop
Browse files Browse the repository at this point in the history
from develop to master
  • Loading branch information
pencinarsanz-atos authored Nov 4, 2021
2 parents fb36d6e + bafe519 commit 1e838b9
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/delete_branch_on_close_PR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: delete branch on close pr
on:
pull_request:
types: [closed]

jobs:
delete-branch:
runs-on: ubuntu-latest
steps:
- name: delete branch
uses: SvanBoxel/delete-merged-branch@main
env:
exclude: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
History
=======

0.5.1 (2021-03-11)
------------------

* Added class LocationSubscriber to SDK. A class that allows to get location monitoring reports from the 5G-API
* Clean-up the code
* New cli_helper.py class created to improve the code
* cli.py class updated for better practices
* Added new command options to interact with the pipelines


0.1.9 (2021-20-09)
------------------

Expand Down
2 changes: 1 addition & 1 deletion evolved5g/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for Evolved5G_CLI."""

__author__ = "EVOLVED5G project"
__version__ = '0.5.0'
__version__ = '0.5.1'

# Uncomment next lines to give direct import access to modules
#from . import cli
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.5.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/EVOLVED-5G/SDK-CLI',
version='0.5.0',
version='0.5.1',
zip_safe=False,
)

0 comments on commit 1e838b9

Please sign in to comment.