Bump version to 6.1.7rc2

This commit is contained in:
Ivan Kravets
2023-05-04 23:14:21 +03:00
parent eb20f3410a
commit f8f3e9863e
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
VERSION = (6, 1, "7rc1")
VERSION = (6, 1, "7rc2")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -45,7 +45,7 @@ home_requirements = [
"aiofiles==%s" % ("0.8.0" if PY36 else "23.1.*"),
"ajsonrpc==1.*",
"starlette==%s" % ("0.19.1" if PY36 else "0.26.*"),
"uvicorn==%s" % ("0.16.0" if PY36 else "0.21.*"),
"uvicorn==%s" % ("0.16.0" if PY36 else "0.22.*"),
"wsproto==%s" % ("1.0.0" if PY36 else "1.2.*"),
]