Skip to content

Commit dc91866

Browse files
authored
Merge pull request #24 from sourcebots/v0.4.0
Release v0.4.0
2 parents 791a953 + 1201255 commit dc91866

5 files changed

Lines changed: 22 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
[![CircleCI](https://circleci.com/gh/sourcebots/sbot.svg?style=svg)](https://circleci.com/gh/sourcebots/sbot)
44
[![PyPI version](https://badge.fury.io/py/sbot.svg)](https://badge.fury.io/py/sbot)
5+
[![Documentation Status](https://readthedocs.org/projects/pip/badge/?version=stable)](http://pip.pypa.io/en/stable/?badge=stable)
56

67
`sbot` - SourceBots Robot API - Powered by j5
78

8-
This is an experimental API for SourceBots, based on the [j5](https://github.com/j5api/j5)
9-
library for writing Robotics APIs. If successful, it could potentially be deployed at
10-
SourceBots / Smallpeice 2019.
9+
This is the API for SourceBots, based on the [j5](https://github.com/j5api/j5)
10+
library for writing Robotics APIs. It will first be deployed at Smallpeice 2019.
1111

1212
Much like it's predecessor, [robot-api](https://github.com/sourcebots/robot-api), `sbot` supports
1313
multiple backends, although should be more reliable as there is no `UNIX-AF` socket layer.

poetry.lock

Lines changed: 16 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sbot"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Experimental SourceBots API"
55
authors = ["Dan Trickey <dan@trickey.io>"]
66
readme = "README.md"
@@ -17,7 +17,7 @@ classifiers = [
1717

1818
[tool.poetry.dependencies]
1919
python = "^3.6"
20-
j5 = "^0.6.0"
20+
j5 = "^0.7.0"
2121

2222

2323
[tool.poetry.dev-dependencies]

sbot/robot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from . import metadata
2323
from .vision import SbotCameraBackend
2424

25-
__version__ = "0.2.0"
25+
__version__ = "0.4.0"
2626

2727
LOGGER = logging.getLogger(__name__)
2828

tests/test_sbot.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
"""Test that the module works."""
2-
from sbot import __version__
32

43

54
def test_import() -> None:
65
"""Test that we can import the module."""
76
import sbot # noqa: F401
8-
9-
10-
def test_version() -> None:
11-
"""Test that the version is as expected."""
12-
assert __version__ == '0.2.0'

0 commit comments

Comments
 (0)