Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Secure Processing Unit

module(
name = "spu",
version = "0.9.4",
version = "0.10.0.dev",
compatibility_level = 1,
)

Expand Down
1 change: 1 addition & 0 deletions _codeql_detected_source_root
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is _codeql_detected_source_root?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_codeql_detected_source_root is an artifact file created by the CodeQL security scanner. It was accidentally committed when I ran the security checks. I've removed it in commit 8600bc2 and added it to .gitignore to prevent this from happening again.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ requires-python = ">=3.10,<3.12"
dynamic = ["version"]

dependencies = [
"numpy<2,>=1.22.0", # FIXME: for SF compatibility
"numpy>=1.24.0",
"cloudpickle>=2.0.0",
"multiprocess>=0.70.12.2",
"cachetools>=5.0.0",
"jax[cpu]==0.6.2",
"jax[cpu]>=0.4.35",
"termcolor>=2.0.0",
]

Expand Down
2 changes: 1 addition & 1 deletion src/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

module(
name = "spulib",
version = "0.9.4",
version = "0.10.0.dev",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion src/libspu/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#define SPU_VERSION "0.9.4"
#define SPU_VERSION "0.10.0.dev"

#include <string_view>

Expand Down
2 changes: 1 addition & 1 deletion update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import re
import os

SPU_VERSION_PREFIX = "0.9.4.dev"
SPU_VERSION_PREFIX = "0.10.0.dev"


def get_today_tag():
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

SPU_VERSION = "0.9.4"
SPU_VERSION = "0.10.0.dev"
Loading