Skip to content

Commit

Permalink
Bump versions to 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <[email protected]>
  • Loading branch information
aaronchongth committed Jul 31, 2024
1 parent c92f2ba commit b52c9f2
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions packages/api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "api-client",
"version": "0.0.1",
"description": "",
"version": "1.0.0",
"description": "API client library to interface with the API server",
"main": "dist/lib/index.js",
"browser": "lib/index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/api-server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "api-server",
"version": "0.0.0",
"description": "dummy package",
"version": "1.0.0",
"description": "Open-RMF API server",
"private": true,
"scripts": {
"prepack": "../../.venv/bin/pipenv run python setup.py bdist_wheel",
Expand Down
4 changes: 2 additions & 2 deletions packages/api-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

setup(
name=package_name,
description="RMF api server",
version="0.0.1",
description="Open-RMF API server",
version="1.0.0",
packages=find_packages(exclude=["tests"]),
author="Teo Koon Peng",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rmf-dashboard-e2e",
"description": "",
"description": "End-to-end testing with the Open-RMF dashboard",
"main": "index.js",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rmf-dashboard",
"version": "0.0.1",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-components",
"version": "0.0.1",
"description": "",
"version": "1.0.0",
"description": "Reusable react components for building Open-RMF frontends",
"type": "module",
"main": "lib/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/rmf-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rmf-auth",
"version": "0.0.1",
"version": "1.0.0",
"description": "Auth layer to be used on web UI services",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/rmf-models/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rmf-models",
"version": "0.0.1",
"version": "1.0.0",
"description": "RMF models generated from ROS messages",
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/ros-translator/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "ros-translator",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"description": "dummy package",
"description": "Translates ros interface definitions to other formats",
"main": "index.js",
"scripts": {
"test": ". ../../.venv/bin/activate && ./test.sh"
Expand Down
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>ros_translator_test_msgs</name>
<version>0.0.0</version>
<version>1.0.0</version>
<description>test msgs for ros_translator</description>
<maintainer email="[email protected]">nobody</maintainer>
<license>Apache License 2.0</license>
Expand Down
2 changes: 1 addition & 1 deletion packages/ros-translator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="ros_translator",
description="Translates ros interface definitions to other formats",
version="0.0.1",
version="1.0.0",
packages=find_packages(exclude=["tests"]),
package_data={
"ros_translator": ["typescript/templates/*", "pydantic/*.j2"],
Expand Down
2 changes: 1 addition & 1 deletion pipenv-install/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pipenv-install",
"version": "0.0.0",
"version": "1.0.0",
"description": "A dummy package so that we can run pipenv install only when needed",
"private": true,
"scripts": {
Expand Down

0 comments on commit b52c9f2

Please sign in to comment.