Skip to content

Commit

Permalink
Release Notes for 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosame committed Feb 14, 2022
1 parent 78a2127 commit 1426a6f
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
27 changes: 27 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# css4j-dom4j version 1.3.0 Release Notes

### February 15, 2022

<br/>

## Release Highlights

### `:dir()` pseudo-class

The `:dir()` pseudo-class is now partially supported in computed styles.

Full support could not be implemented due to dom4j's limited DOM support.

Users are advised to switch to css4j's native DOM if they need a full `:dir`
implementation.

### Build

The build system was switched from Maven to Gradle.


## Project Sites

Project home: https://css4j.github.io/

Development site: https://github.com/css4j/css4j-dom4j
18 changes: 18 additions & 0 deletions changes.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash
#
# This script writes the changelog in a human-readable format.
#
# You'll probably want to edit manually the result of executing the script.
#
if [[ $# -eq 0 ]] ; then
echo "No version supplied (e.g. '1.3.1')"
exit 1
fi
OLDTAG=`git tag -l --merged 1-stable --sort=-taggerdate|head -1`
echo "Writing changes from tag $OLDTAG"
TITLE="CSS4J-DOM4J Module changes"
VERHDR="Version ${1}"
OUTFILE="CHANGES.txt"
echo -en "${TITLE}\\r\\n${TITLE//?/=}\\r\\n\\r\\n${VERHDR}\\r\\n${VERHDR//?/-}\\r\\n\\r\\n">${OUTFILE}
git log --reverse --pretty=format:%s ${OLDTAG}..|sed -e 's/^/- /'|fold -s|sed -r 's/^([^-])/ \1/'|sed -e 's/$/\r/'>>${OUTFILE}
echo -en "\\n">>${OUTFILE}

0 comments on commit 1426a6f

Please sign in to comment.