Skip to content

Commit 9b6c051

Browse files
Release v1.2.0
* fixed typo in CHANGELOG date * fixed bad CHANGELOG dates * fixed ambiguous variable name in Daikon trace writer * fixed f-string without placeholders
1 parent 9f23809 commit 9b6c051

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.2.0 (????-??-??)
1+
# 1.2.0 (2020-05-27)
22

33
* Moved methods in `substitution` module into `ArgumentResolver` class.
44
* Added handling of executables and resources for `$(find ...)` commands.
@@ -16,7 +16,7 @@
1616
* Removed `launch` method from `ROSCore`. Replaced with `roslaunch`.
1717

1818

19-
# 1.1.0 (2020-23-04)
19+
# 1.1.0 (2020-04-23)
2020

2121
* Bug fix: Updated `proxy.substitution` module to use DockerBlade API
2222
* Containers will now raise a `SourceNotFoundError` if a given source does
@@ -41,7 +41,7 @@
4141
* Removed `client_docker` property from `ROSWire`.
4242

4343

44-
# 1.0.0 (2020-31-03)
44+
# 1.0.0 (2020-03-31)
4545

4646
* Added `ports` keyword argument to `launch` method for `ROSWire`, allowing
4747
users to specify an optional container-host port mapping.

src/roswire/bag/daikon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def add(self, ppt: GenericProgramPoint, vals: Mapping[str, Any]) -> None:
122122
else:
123123
str_val = str(var_val)
124124
lines += [var_name, str_val, '1']
125-
fp.writelines(f'{l}\n' for l in lines)
125+
fp.writelines(f'{line}\n' for line in lines)
126126
fp.write('\n')
127127

128128
def close(self) -> None:

src/roswire/definitions/msg.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
R_VAL = r".+"
2222
R_COMMENT = r"(#.*)?"
2323
R_FIELD = re.compile(f"^\s*({R_TYPE})\s+({R_NAME})\s*{R_COMMENT}$")
24-
R_STRING_CONSTANT = re.compile(f"^\s*string\s+(\w+)\s*=\s*(.+)\s*$")
25-
R_OTHER_CONSTANT = re.compile(f"^\s*(\w+)\s+(\w+)\s*=\s*([^\s]+).*$")
24+
R_STRING_CONSTANT = re.compile("^\s*string\s+(\w+)\s*=\s*(.+)\s*$")
25+
R_OTHER_CONSTANT = re.compile("^\s*(\w+)\s+(\w+)\s*=\s*([^\s]+).*$")
2626
R_BLANK = re.compile(f"^\s*{R_COMMENT}$")
2727

2828
ConstantValue = Union[str, int, float]

0 commit comments

Comments
 (0)