Skip to content

Commit 64084e8

Browse files
authored
Merge branch 'main' into v3
2 parents 5a2c578 + ea0def1 commit 64084e8

7 files changed

Lines changed: 21 additions & 15 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: b5fb449
2+
_commit: b8951e0
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: js

.github/workflows/build.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
pull_request:
1414
branches:
1515
- main
16-
- v3
16+
- v3
1717
workflow_dispatch:
1818

1919
concurrency:
@@ -27,7 +27,13 @@ permissions:
2727

2828
jobs:
2929
build:
30-
runs-on: ubuntu-latest
30+
runs-on: ${{ matrix.os }}
31+
32+
strategy:
33+
matrix:
34+
os: [ubuntu-latest]
35+
python-version: ["3.11"]
36+
node-version: [22.x]
3137

3238
steps:
3339
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -40,7 +46,7 @@ jobs:
4046
- name: Set up NodeJS
4147
uses: actions-ext/node/setup@main
4248
with:
43-
version: 22.x
49+
version: ${{ matrix.node-version }}
4450

4551
- name: Install dependencies
4652
run: make develop

csp_gateway/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.6.1"
1+
__version__ = "2.7.0"
22

33
try:
44
from .client import *

examples/Client.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
},
200200
"description": "# Welcome to CSP Gateway API\nContains REST/Websocket interfaces to underlying CSP Gateway engine",
201201
"title": "Gateway",
202-
"version": "2.6.1"
202+
"version": "2.7.0"
203203
},
204204
"openapi": "3.1.0",
205205
"paths": {

js/package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@point72/csp-gateway",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "csp-gateway is a framework for building high-performance streaming applications",
55
"repository": "git@github.com:Point72/csp-gateway.git",
66
"author": "Point72, L.P. <OpenSource@point72.com>",
@@ -46,11 +46,5 @@
4646
"@perspective-dev/workspace": "~4.4.1",
4747
"react": "19.2.6",
4848
"react-dom": "19.2.6"
49-
},
50-
"pnpm": {
51-
"overrides": {
52-
"react": "19.2.6",
53-
"react-dom": "19.2.6"
54-
}
5549
}
5650
}

js/pnpm-workspace.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
allowBuilds:
2+
esbuild: true
3+
4+
overrides:
5+
react: 19.2.6
6+
react-dom: 19.2.6

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ authors = [
1414
description = "csp-gateway is a framework for building high-performance streaming applications"
1515
readme = "README.md"
1616
license = { text = "Apache-2.0" }
17-
version = "2.6.1"
17+
version = "2.7.0"
1818
requires-python = ">=3.10"
1919
keywords = [
2020
"csp",
@@ -124,7 +124,7 @@ Repository = "https://github.com/Point72/csp-gateway"
124124
Homepage = "https://github.com/Point72/csp-gateway/wiki"
125125

126126
[tool.bumpversion]
127-
current_version = "2.6.1"
127+
current_version = "2.7.0"
128128
commit = true
129129
tag = false
130130
commit_args = "-s"

0 commit comments

Comments
 (0)