-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See release notes for description.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Release v1.0.1 | ||
============== | ||
|
||
**Changes** | ||
|
||
* Added support for absolute etree Path queries. An absolute path begins with | ||
`/` or `//` and begins its search from the element's document root. | ||
* Added [`GetPath`](https://godoc.org/github.com/beevik/etree#Element.GetPath) | ||
and [`GetRelativePath`](https://godoc.org/github.com/beevik/etree#Element.GetRelativePath) | ||
functions to the [`Element`](https://godoc.org/github.com/beevik/etree#Element) | ||
type. | ||
|
||
**Breaking changes** | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
* A path starting with `//` is now interpreted as an absolute path. | ||
Previously, it was interpreted as a relative path starting from the element | ||
whose | ||
[`FindElement`](https://godoc.org/github.com/beevik/etree#Element.FindElement) | ||
method was called. To remain compatible with this release, all paths | ||
prefixed with `//` should be prefixed with `.//` when called from any | ||
element other than the document's root. | ||
|
||
|
||
Release v1.0.0 | ||
============== | ||
|
||
Initial release. |
Surprised to find a "breaking changes" header in a patch-release; is this library using SemVer?