File tree 4 files changed +13
-9
lines changed
4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ parameters:
6
6
jobs :
7
7
- job : ' test_and_publish'
8
8
strategy :
9
+ maxParallel : 2
9
10
matrix :
10
11
${{ each py in parameters.pythonVersions }} :
11
12
${{ each os in parameters.operatingSystems }} :
Original file line number Diff line number Diff line change 1
1
## 0.14.0 (in development)
2
2
3
3
- Fix bug where empty inputs don't generate tokens.
4
- - CLI commands to delete runs nad projects.
5
- - Migrate to Azure DevOps for CI testing.
6
- - Synthetic data generation using distributions.
4
+ - CLI commands to delete runs and projects. #265
5
+ - Migrate to Azure DevOps for CI testing. #262
6
+ - Synthetic data generation using distributions. #271 , #275
7
+ - Switch to using a fork of ` bitarray ` that distributes binary wheels. This means installing clkhash no longer
8
+ requires a c compiler. #308
7
9
8
- BREAKING CHANGE:
10
+ ### Breaking Changes
11
+
12
+ - The cli method ` hash ` requires only one secret instead of two. #303
13
+ - The clks generated with ` clkhash ` <= 0.14.0 are not compatible with clks from version 0.14.0 onwards.
9
14
10
- - The cli method ` hash ` requires only one secret instead of two.
11
- - The clks pre 0.14 are not compatible with clks from version 0.14.0
12
15
13
16
## 0.13.0
14
17
Original file line number Diff line number Diff line change 1
1
bashplotlib == 0.6.5
2
- bitarray == 0.9.3
2
+ bitarray-hardbyte == 1.1.0
3
3
click == 7.0
4
4
cryptography == 2.7
5
5
enum34 == 1.1.6 ; python_version < '3.4'
Original file line number Diff line number Diff line change 6
6
7
7
requirements = [
8
8
"bashplotlib>=0.6.5" ,
9
- "bitarray>=0.8" ,
9
+ "bitarray-hardbyte>=1.0.0" , # Fork of bitarray distributing binary wheels #153
10
10
"click>=6.7" ,
11
11
"cryptography>=2.3" ,
12
12
"enum34==1.1.6; python_version < '3.4'" ,
33
33
34
34
setup (
35
35
name = "clkhash" ,
36
- version = '0.14.0' ,
36
+ version = '0.14.0-dev ' ,
37
37
description = 'Encoding utility to create Cryptographic Linkage Keys' ,
38
38
long_description = readme ,
39
39
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments