Skip to content

Commit

Permalink
SW: Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
colinoflynn committed Aug 4, 2018
1 parent 1d4f575 commit 9e95ac2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
V4.0.2:
-Improve SAD logic
-Add RSA firmware build for ARM.
-Add new setup scripts (CEC1702, ESP32)
-Various small fixes

V4.0.1:
-State for GUI Programmers is not held in between actions, allowing the programmers to be left open during captures/glitching without causing problems
-The GUI programmers now use the 4.0 api to set pins for programming, saving pin states before an action to restore them after.
-Most firmware files are now compatible with the ARM compiler
-Example scripts in chipwhisperer/software/scripting-examples have been updated for 4.0, providing an example of using the ChipWhisperer tool without the GUI for clock glitching, trace capture during encryption, and trace analysis.

V4.0.0:
-Rewritten script interface, now almost all work is done via preconfigured scripts
-New API allows direct access to configuration (useful with new script architecture)
Expand Down
2 changes: 1 addition & 1 deletion software/chipwhisperer/common/api/CWCoreAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class CWCoreAPI(Parameterized):

__name__ = "ChipWhisperer"
__organization__ = "NewAE Technology Inc."
__version__ = "V4.0.1"
__version__ = "V4.0.2"
_name = 'Generic Settings'
instance = None

Expand Down
4 changes: 2 additions & 2 deletions software/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

setup(
name = 'chipwhisperer',
version = '3.5.3',
version = '4.0.2',
description = "ChipWhisperer Side-Channel Analysis Tool",
author = "Colin O'Flynn",
author_email = 'coflynn@newae.com',
license = 'GPLv3',
url = 'http://www.ChipWhisperer.com',
download_url='https://github.com/newaetech/chipwhisperer/archive/3.5.3.tar.gz',
download_url='https://github.com/newaetech/chipwhisperer/archive/4.0.2.tar.gz',
packages = ['chipwhisperer',
'chipwhisperer.capture',
'chipwhisperer.capture.acq_patterns',
Expand Down

0 comments on commit 9e95ac2

Please sign in to comment.