Skip to content

Commit

Permalink
Merge pull request #130 from CiscoTestAutomation/release_24.7
Browse files Browse the repository at this point in the history
Release 24.7
  • Loading branch information
lsheikal authored Aug 1, 2024
2 parents b9a73e3 + 301df0d commit 696d77d
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 12 deletions.
26 changes: 26 additions & 0 deletions docs/changelog/2024/july.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
July 2024
==========

July 30 - Rest v24.7
------------------------



+-------------------------------+-------------------------------+
| Module | Versions |
+===============================+===============================+
| ``rest.connector `` | 24.7 |
+-------------------------------+-------------------------------+

Upgrade Instructions
^^^^^^^^^^^^^^^^^^^^

.. code-block:: bash
pip install --upgrade rest.connector
Changelogs
^^^^^^^^^^
1 change: 1 addition & 0 deletions docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
.. toctree::
:maxdepth: 2

2024/july
2024/june
2024/may
2024/april
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shlex
import unittest
import subprocess
from setuptools import setup, find_packages, Command
from setuptools import setup, Command, find_namespace_packages
from setuptools.command.test import test

pkg_name = 'rest.connector'
Expand Down Expand Up @@ -129,14 +129,11 @@ def find_version(*paths):
'Topic :: Software Development :: Libraries :: Python Modules',
],

# uses namespace package
namespace_packages=['rest'],

# project keywords
keywords='pyats cisco-shared',

# project packages
packages=find_packages(where='src'),
packages=find_namespace_packages(where='src'),

# project directory
package_dir={
Expand Down
6 changes: 0 additions & 6 deletions src/rest/__init__.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/rest/connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
the device via REST api"""

# metadata
__version__ = '24.6'
__version__ = '24.7'
__author__ = ['Jean-Benoit Aubin <jeaubin@cisco.com>',
'Takashi Higashimura (tahigash) <tahigash@cisco.com>']

Expand Down

0 comments on commit 696d77d

Please sign in to comment.