Skip to content

Commit 138c69e

Browse files
authored
Merge pull request #77 from riscv-software-src/warl-fix-and-svnapot-support
Documentation Fix.
2 parents e8e1703 + 8c80393 commit 138c69e

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [2.13.1] - 2022-03-23
6+
- Added setup.cfg to automate bumpversion
7+
- Fix wording for legal strings in dependency warl fields.
8+
59
## [2.13.0] - 2022-03-09
610
- add support for detection of svnapot in ISA string
711
- genralize conversion of hex, oct, bin values to int in warl functions

docs/source/yaml-specs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ A WARL csr/field has the following skeleton in the riscv-config:
324324
1. No legal value must exceed the maximum value which can be supported (based on the width of the field).
325325
2. Functions should be exhaustive with respect to every possible combination of the dependency values.
326326
3. within a string for `legal` all bits of the csr/field should be covered. No bits must be left undefined.
327-
4. A legal string should not be a combination ranges split into parts or a simple bitmask function for the entire field. mixing bitmask and ranges it allowed. The following example is an invalid spec:
327+
4. A legal string should be a combination of ranges split into parts or a simple bitmask function for the entire field. Mixing bitmask and ranges is not allowed. The following example is an invalid spec:
328328

329329
.. code-block:: yaml
330330

riscv_config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from pkgutil import extend_path
22
__path__ = extend_path(__path__, __name__)
3-
__version__ = '2.13.0'
3+
__version__ = '2.13.1'

setup.cfg

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[bumpversion]
2+
current_version = 2.13.1
3+
commit = True
4+
tag = True
5+
6+
[bumpversion:file:riscv_config/__init__.py]
7+
search = __version__ = '{current_version}'
8+
replace = __version__ = '{new_version}'
9+
10+
[bdist_wheel]
11+
universal = 1
12+
13+
[flake8]
14+
exclude = docs
15+
16+
[aliases]

0 commit comments

Comments
 (0)