Skip to content

Commit

Permalink
Merge pull request #31 from karans5/instr_seq_func
Browse files Browse the repository at this point in the history
Included functions for instruction sequences
  • Loading branch information
neelgala authored Mar 30, 2023
2 parents b6befee + 9f24047 commit 1702b32
Show file tree
Hide file tree
Showing 5 changed files with 1,065 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

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

## [1.7.0] - 2023-03-29
- added functions in instruction_constants.py to generate ASM strings for various instruction sequences

## [1.6.0] - 2022-11-25
- fix march and mabi generation

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.0
current_version = 1.7.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read_requires():

setup(
name='uatg',
version='1.6.0',
version='1.7.0',
description="UATG - Micro-Architecture (µArch) Tests Generator",
long_description=readme + '\n\n',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion uatg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = """InCore Semiconductors Pvt Ltd"""
__email__ = '[email protected]'
__version__ = '1.6.0'
__version__ = '1.7.0'
Loading

0 comments on commit 1702b32

Please sign in to comment.