Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mariodavid committed Apr 11, 2018
1 parent d141edf commit 131a69d
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.0.0] - 2018-04-11

This is a marker release. It is meant to show the the majority of the APIs according to the Semver conventions.


### Dependencies
- CUBA 6.8.x

## [0.4.1] - 2017-12-19

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ It mainly consists of the three parts:

| Platform Version | Add-on Version |
| ---------------- | -------------- |
| 6.8.x | 1.0.x |
| 6.7.x | 0.4.x |
| 6.6.x | 0.2.x - 0.3.x |
| 6.5.x | 0.1.x |
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

buildscript {
ext.cubaVersion = '6.7.12'
ext.cubaVersion = '6.8.5'
repositories {
maven {
url 'https://repo.cuba-platform.com/content/groups/work'
Expand Down Expand Up @@ -40,7 +40,7 @@ def bintrayRepositoryUrl = "https://api.bintray.com/maven/mariodavid/cuba-compon
cuba {
artifact {
group = 'de.diedavids.cuba.runtimediagnose'
version = '0.4.1'
version = '1.0.0'
isSnapshot = false
}
tomcat {
Expand Down Expand Up @@ -307,7 +307,7 @@ task restart(dependsOn: ['stop', ':runtime-diagnose-core:deploy', ':runtime-diag
}

task wrapper(type: Wrapper) {
gradleVersion = '3.4'
gradleVersion = '4.3.1'
}

apply from: 'extra.gradle'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sat Nov 25 15:26:08 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-bin.zip
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package de.diedavids.cuba.runtimediagnose.web.screens.jpql


import static com.haulmont.cuba.gui.WindowManager.OpenType.DIALOG
import static com.haulmont.cuba.gui.components.Frame.NotificationType.ERROR
import static com.haulmont.cuba.gui.components.Frame.NotificationType.WARNING

import com.haulmont.bali.util.ParamsMap
import com.haulmont.cuba.core.global.Messages
import com.haulmont.cuba.core.global.RemoteException
import com.haulmont.cuba.gui.components.AbstractWindow
import com.haulmont.cuba.gui.components.Button
Expand All @@ -18,6 +18,7 @@ import de.diedavids.cuba.runtimediagnose.web.screens.console.ConsoleFrame

import javax.inject.Inject


class JpqlConsole extends AbstractWindow {

@Inject
Expand Down

0 comments on commit 131a69d

Please sign in to comment.