Skip to content

Commit

Permalink
Release 1.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hpehl committed Feb 6, 2024
1 parent e1c5459 commit 28d4251
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.2.13] - 2024-02-06

### Added

- `HasElement.run(Consumer<B>)` to executes code in the context of the builder
Expand Down Expand Up @@ -811,7 +813,8 @@ Switch to Apache2 license



[Unreleased]: https://github.com/hal/elemento/compare/v1.2.12...HEAD
[Unreleased]: https://github.com/hal/elemento/compare/v1.2.13...HEAD
[1.2.13]: https://github.com/hal/elemento/compare/v1.2.12...v1.2.13
[1.2.12]: https://github.com/hal/elemento/compare/v1.2.11...v1.2.12
[1.2.11]: https://github.com/hal/elemento/compare/v1.2.10...v1.2.11
[1.2.10]: https://github.com/hal/elemento/compare/v1.2.9...v1.2.10
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Elemento is available in [Maven Central](https://search.maven.org/search?q=g:org
<dependency>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-core</artifactId>
<version>1.2.12</version>
<version>1.2.13</version>
</dependency>
```

Expand Down Expand Up @@ -321,7 +321,7 @@ To create SVG elements, add the following dependency to your POM:
<dependency>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-svg</artifactId>
<version>1.2.12</version>
<version>1.2.13</version>
</dependency>
```

Expand All @@ -343,7 +343,7 @@ To create MathML elements, add the following dependency to your POM:
<dependency>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-mathml</artifactId>
<version>1.2.12</version>
<version>1.2.13</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion build-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion code-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-code-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../code-parent/pom.xml</relativePath>
</parent>

<artifactId>elemento-core</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<packaging>jar</packaging>
<name>Elemento Core</name>
<description>Elemento Core API</description>
Expand Down
4 changes: 2 additions & 2 deletions mathml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-code-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../code-parent/pom.xml</relativePath>
</parent>

<artifactId>elemento-mathml</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<packaging>jar</packaging>
<name>Elemento MathML</name>
<description>Elemento MathML API</description>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<packaging>pom</packaging>
<name>Elemento Parent</name>
<description>Builder API and other goodies for GWT Elemental</description>
Expand Down
4 changes: 2 additions & 2 deletions svg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<groupId>org.jboss.elemento</groupId>
<artifactId>elemento-code-parent</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<relativePath>../code-parent/pom.xml</relativePath>
</parent>

<artifactId>elemento-svg</artifactId>
<version>1.2.13-SNAPSHOT</version>
<version>1.2.13</version>
<packaging>jar</packaging>
<name>Elemento SVG</name>
<description>Elemento SVG API</description>
Expand Down

0 comments on commit 28d4251

Please sign in to comment.