autogenerate WHATSNEW from changes.xml
git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/antunit/trunk@552398 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2509863660
commit
e71d9dfa2b
15
WHATSNEW
15
WHATSNEW
|
|
@ -1,15 +0,0 @@
|
|||
Changes from AntUnit 1.0 TO current SVN version
|
||||
===============================================
|
||||
|
||||
Probably some items are (still) missing
|
||||
|
||||
Changes that could break older environments:
|
||||
-------------------------------------------
|
||||
|
||||
Fixed bugs:
|
||||
-----------
|
||||
|
||||
* Bug 42745 assertFileExists example wrong, should use @file instead of @name
|
||||
|
||||
Other changes:
|
||||
--------------
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE document
|
||||
[
|
||||
<!ELEMENT document (properties?, release+)>
|
||||
<!ELEMENT properties (title)>
|
||||
<!ELEMENT title (#PCDATA)>
|
||||
<!ELEMENT release (action*)>
|
||||
<!ELEMENT action (#PCDATA)>
|
||||
<!ATTLIST release
|
||||
version CDATA #REQUIRED
|
||||
date CDATA #REQUIRED
|
||||
description CDATA #IMPLIED>
|
||||
<!ATTLIST action
|
||||
issue CDATA #IMPLIED
|
||||
type (add|fix|remove|update) #REQUIRED
|
||||
breaks-bwc (true|false) #IMPLIED>
|
||||
]
|
||||
>
|
||||
<document>
|
||||
<properties>
|
||||
<title>Apache AntUnit</title>
|
||||
</properties>
|
||||
|
||||
<release version="SVN trunk" date="unpublished">
|
||||
<action type="fix" issue="42745">
|
||||
assertFileExists example wrong, should use @file instead of @name
|
||||
</action>
|
||||
</release>
|
||||
|
||||
</document>
|
||||
Loading…
Reference in New Issue