Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Bump minor for 14.4 (#57)
Browse files Browse the repository at this point in the history
* Bump parent version

* Bump to next minor

* Bump webjars for 14.4

* Update gitignore for easier branch switching

* Update npmpackage
  • Loading branch information
alvarezguille committed Sep 2, 2020
1 parent 5f34d3e commit bdaef04
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ vaadin-details-flow-integration-tests/error-screenshots/
.vscode/*

# The following files are generated/updated by flow-maven-plugin
package.json
webpack.config.js
package*.json
pnpm-lock.yaml
webpack.*.js
tsconfig.json
types.d.ts
node_modules/
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>flow-component-base</artifactId>
<version>2.3-SNAPSHOT</version>
<version>2.4-SNAPSHOT</version>
<relativePath />
</parent>

<artifactId>vaadin-details-flow-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Vaadin Details Parent</name>
<inceptionYear>2018</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-details-flow-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-details-flow-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</parent>

<artifactId>vaadin-details-flow-demo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-details-flow-integration-tests/pom-bower-mode.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-details-flow-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</parent>

<artifactId>vaadin-details-flow-integration-tests-bower-mode</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-details-flow-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-details-flow-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</parent>

<artifactId>vaadin-details-flow-integration-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-details-flow-testbench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>vaadin-details-flow-parent</artifactId>
<groupId>com.vaadin</groupId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</parent>

<artifactId>vaadin-details-testbench</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions vaadin-details-flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-details-flow-parent</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</parent>

<artifactId>vaadin-details-flow</artifactId>
Expand Down Expand Up @@ -54,13 +54,13 @@
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-details</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>

<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-themable-mixin</artifactId>
<version>1.5.2</version>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
Expand Down Expand Up @@ -95,7 +95,7 @@
<dependency>
<groupId>org.webjars.bowergithub.vaadin</groupId>
<artifactId>vaadin-control-state-mixin</artifactId>
<version>2.1.3</version>
<version>2.2.3</version>
</dependency>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import com.vaadin.flow.shared.Registration;

@Tag("vaadin-details")
@NpmPackage(value = "@vaadin/vaadin-details", version = "1.1.0")
@NpmPackage(value = "@vaadin/vaadin-details", version = "1.2.0")
@JsModule("@vaadin/vaadin-details/src/vaadin-details.js")
@HtmlImport("frontend://bower_components/vaadin-details/src/vaadin-details.html")
public class Details extends Component implements HasEnabled, HasTheme {
Expand Down

0 comments on commit bdaef04

Please sign in to comment.