Skip to content

Commit

Permalink
Version 1.1.0 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Oct 1, 2023
1 parent 5f39069 commit 83c8080
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 0 additions & 2 deletions pyrobosim/setup.cfg

This file was deleted.

5 changes: 4 additions & 1 deletion pyrobosim/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
from pathlib import Path
from setuptools import setup, find_packages

# This is for standalone (non-ROS) use.
Expand Down Expand Up @@ -32,11 +33,13 @@ def get_files_in_folder(directory):

setup(
name=project_name,
version="1.0.0",
version="1.1.0",
url="https://github.com/sea-bass/pyrobosim",
author="Sebastian Castro",
author_email="sebas.a.castro@gmail.com",
description="ROS 2 enabled 2D mobile robot simulator for behavior prototyping.",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
license="MIT",
install_requires=install_requires,
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion pyrobosim_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>pyrobosim_msgs</name>
<version>1.0.0</version>
<version>1.1.0</version>
<description>Message definitions for pyrobosim package.</description>
<maintainer email="sebas.a.castro@gmail.com">Sebastian Castro</maintainer>
<license>MIT</license>
Expand Down
2 changes: 1 addition & 1 deletion pyrobosim_ros/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>pyrobosim_ros</name>
<version>1.0.0</version>
<version>1.1.0</version>
<description>ROS 2 wrapper around pyrobosim.</description>
<maintainer email="sebas.a.castro@gmail.com">Sebastian Castro</maintainer>
<license>MIT</license>
Expand Down
2 changes: 1 addition & 1 deletion pyrobosim_ros/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name=project_name,
version="1.0.0",
version="1.1.0",
url="https://github.com/sea-bass/pyrobosim",
author="Sebastian Castro",
author_email="sebas.a.castro@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion test/test_pyrobosim.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def test_import():

def test_version():
ver = version("pyrobosim")
assert ver == "1.0.0", "Incorrect pyrobosim version"
assert ver == "1.1.0", "Incorrect pyrobosim version"

0 comments on commit 83c8080

Please sign in to comment.