Skip to content

Commit

Permalink
feat(arcor2_build): updated dependency to Project 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZdenekM authored and ZdenekM committed May 22, 2024
1 parent e85d44b commit 706f5ad
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The following video by [Kinali](https://www.kinali.cz/en/) shows the use case (o

[README](src/python/arcor2_build/README.md) | [CHANGELOG](src/python/arcor2_build/CHANGELOG.md)

- 2024-04-11: [1.4.0](https://github.com/robofit/arcor2/releases/tag/arcor2_build%2F1.4.0) ([docker](https://hub.docker.com/r/arcor2/arcor2_build/tags?page=1&ordering=last_updated&name=1.4.0), [pypi](https://pypi.org/project/arcor2-build/1.4.0/)).
- 2024-05-22: [1.5.0](https://github.com/robofit/arcor2/releases/tag/arcor2_build%2F1.5.0) ([docker](https://hub.docker.com/r/arcor2/arcor2_build/tags?page=1&ordering=last_updated&name=1.5.0), [pypi](https://pypi.org/project/arcor2-build/1.5.0/)).

### arcor2_build_data

Expand Down
6 changes: 3 additions & 3 deletions compose-files/fit-demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- ARCOR2_KINECT_AZURE_URL=http://192.168.104.100:5017 # Run kinect using pants

fit-demo-build:
image: arcor2/arcor2_build:1.4.0
image: arcor2/arcor2_build:1.5.0
container_name: fit-demo-build
depends_on:
fit-demo-project:
Expand Down Expand Up @@ -170,7 +170,7 @@ services:
- "5013:5013"

fit-demo-asset:
image: registry.gitlab.com/kinalisoft/test-it-off/asset:1.0.0
image: registry.gitlab.com/kinalisoft/test-it-off/asset:2.0.0
container_name: "fit-demo-asset"
environment:
- "ASSETS_FOLDER=/tmp/assets"
Expand All @@ -184,7 +184,7 @@ services:
- "10040:10040"

fit-demo-project:
image: registry.gitlab.com/kinalisoft/test-it-off/project:1.0.1
image: registry.gitlab.com/kinalisoft/test-it-off/project:2.0.0
container_name: "fit-demo-project"
ports:
- "10000-10001:10000-10001"
Expand Down
2 changes: 1 addition & 1 deletion pants-plugins/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def arcor2_python_distribution(name: str, description: str, binaries=None, **kwa

kwargs["sdist"] = True
kwargs["wheel"] = True
kwargs["wheel_config_settings"] = {"--global-option": ["--python-tag", "py310"]}
kwargs["wheel_config_settings"] = {"--global-option": ["--python-tag", "py311"]}

if binaries:
kwargs["entry_points"] = {"console_scripts": binaries}
Expand Down
2 changes: 1 addition & 1 deletion src/docker/arcor2_build/BUILD
Original file line number Diff line number Diff line change
@@ -1 +1 @@
docker_image(name="arcor2_build", repository="arcor2/arcor2_build", image_tags=["1.4.0"])
docker_image(name="arcor2_build", repository="arcor2/arcor2_build", image_tags=["1.5.0"])
2 changes: 1 addition & 1 deletion src/python/arcor2/clients/project_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
URL = os.getenv("ARCOR2_PROJECT_SERVICE_URL", "http://0.0.0.0:10000")

"""
Collection of functions to work with the Project service (0.10.0).
Collection of functions to work with the Project service (2.0.0).
All functions raise ProjectServiceException when any failure happens.
Expand Down
6 changes: 6 additions & 0 deletions src/python/arcor2_build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [1.5.0] - 2024-05-22

### Changed

- Updated dependency on the Project Service (2.0.0).

## [1.4.0] - 2024-04-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/python/arcor2_build/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.5.0
2 changes: 1 addition & 1 deletion src/python/arcor2_build_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

SERVICE_NAME = "Build"
URL = os.getenv("ARCOR2_BUILD_URL", "http://0.0.0.0:5008")
DEPENDENCIES: dict[str, str] = {"Project": "1.0.0"}
DEPENDENCIES: dict[str, str] = {"Project": "2.0.0"}


@dataclass
Expand Down
6 changes: 6 additions & 0 deletions src/python/arcor2_mocks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [1.2.0] - WIP

### Changed

- API versions updated to 2.0.0.

## [1.1.0] - 2024-04-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/python/arcor2_mocks/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
2 changes: 1 addition & 1 deletion src/python/arcor2_mocks/scripts/mock_asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def main() -> None:
WebApiError,
],
args.swagger,
api_version="1.0.0",
api_version="2.0.0",
)


Expand Down
2 changes: 1 addition & 1 deletion src/python/arcor2_mocks/scripts/mock_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ def main() -> None:
WebApiError,
],
args.swagger,
api_version="1.0.0",
api_version="2.0.0",
)


Expand Down

0 comments on commit 706f5ad

Please sign in to comment.