Skip to content

Commit 55c20b4

Browse files
authored
bump to v0.7.0 (+ minor internal doc changes) (#326)
1 parent e1ec927 commit 55c20b4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/internal/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We use [Bazel](https://bazel.build/) as our build system. Use [bazelisk](https:/
1010

1111
If [ibazel](https://github.com/bazelbuild/bazel-watcher) breaks, but bazel works, try following [these steps](https://github.com/bazelbuild/bazel-watcher/issues/588#issuecomment-1421939371)
1212

13-
> TIP: If your build suddenly stops working (and you are on a clean commit), try using `bazel clean` and `bazel clean --expunge`.
13+
> TIP: If your build mysteriously fails due to an npm-related error, try running `bazel clean --expunge && rm -rf node_modules`. Bazel and Yarn have a cache bug when upgrading npm modules.
1414
1515
### Commit hooks
1616

docs/internal/publishing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Update `mesop/version.py` by incrementing the version number. We follow semver.
1111
From the workspace root, run the following command:
1212

1313
```sh
14-
$ ./scripts/pip.sh
14+
$ source ./scripts/pip.sh
1515
```
1616

1717
This will build the Mesop pip package and install it locally so you can test it.

mesop/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the version string."""
22

3-
VERSION = "0.6.0"
3+
VERSION = "0.7.0"
44

55
if __name__ == "__main__":
66
print(VERSION)

0 commit comments

Comments
 (0)