forked from C4J-Team/C4J
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
32 lines (28 loc) · 1.52 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
C4J 4.0-Beta6 (06/14/2012)
=====
New Features:
* changed package-name to de.vksi.c4j
* contracts for static methods, including static initializers
* old() and unchanged() now usable within class-invariants
* UsageError when referencing an overridden contract method from another contract method
* UsageError when using @Pure on a contract method, which is already implicitly pure
* migrated from Ant to Maven
* setup a build server with BuildHive
Fixes:
* once a condition fails, no other conditions will be checked
* class-invariants are no longer considered for private methods
* removed false warning when using a constructor in a contract class
* removed depracated Condition.pre() and Condition.post()
C4J 4.0-Beta5 (05/17/2012)
=====
New Features:
* Configuration.getExternalContractsAsStrings() - external contracts can also be configured using strings
* introduced Condition.noneIdentifiedYet() to communicate that no pre- or post-condition has been identified yet
* advanced old() and unchanged() working with arbitrary expressions without local variables
* PreTransformer allows to search a directory recursively, transform the contained .class files and save them to disk
* Configuration.getContractsDirectory() now also accepts JAR-files
* added EPL 1.0 as the license for C4J 4.0+
Fixes:
* renamed pre() and post() to preCondition() and postCondition() in order to be more descriptive
* solved class-loader issues when using @Contract
* @Pure strict enforcement now also works with array-element reassignments