Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ Similarly, it ensures that a client and server which agree on `MAJOR` version ar
to communicate reliably.


## [2.1.1] - 2025-06-30

### Fixed

- `VerifierDecisionSpectrumType` now contains the correct spectrum names.
- `nip.parameters.version.ConversionFunctionNotFoundError` called `super().__init`, when
it should be `super().__init__`


## [2.1.0] - 2025-06-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ for a more detailed installation guide.
1. Clone the repository. If you're just running experiments, you can download a specific release, e.g.:

```bash
git clone https://github.com/SamAdamDay/neural-interactive-proofs.git --branch v2.1.0 --depth 1
git clone https://github.com/SamAdamDay/neural-interactive-proofs.git --branch v2.1.1 --depth 1
```

To get the latest version, run:
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/guides/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Installation Steps

.. code-tab:: bash A specific release

git clone https://github.com/SamAdamDay/neural-interactive-proofs.git --branch v2.1.0 --depth 1
git clone https://github.com/SamAdamDay/neural-interactive-proofs.git --branch v2.1.1 --depth 1

.. code-tab:: bash Latest version

Expand Down
2 changes: 1 addition & 1 deletion nip/parameters/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@
"likert_scale_5",
"likert_scale_6",
"likert_scale_7",
"likert_int_scale_11",
"likert_scale",
"likert_scale_no_undecided",
"out_of_10",
"out_of_100",
]
Expand Down
4 changes: 2 additions & 2 deletions nip/parameters/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ConversionFunctionNotFoundError(Exception):
"""Exception raised when no conversion function matches a version number."""

def __init__(self, dict_version: str):
super().__init(
super().__init__(
f"When converting hyper-parameter dictionary, no conversion function "
f"matched the version {dict_version}."
)
Expand Down Expand Up @@ -233,7 +233,7 @@ def _(hyper_param_dict: dict) -> dict:
return hyper_param_dict


@register_conversion_function("2.0.0", "2.1.0")
@register_conversion_function("2.0.0", "2.1")
def _(hyper_param_dict: dict) -> dict:

# Nothing has changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "nip"
version = "2.1.0"
version = "2.1.1"
requires-python = ">= 3.11"
dependencies = [
"datasets==2.21.0",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.