Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0-pre4 #964

Merged
merged 9 commits into from
Feb 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gradle is used as a build and dependency management system.
The project is under active ongoing development. At this stage, we do not recommend using the framework for production purposes.
You are welcome to experiment and [provide your feedback][email-developers].

The latest stable version is [1.0.0-pre1][latest-release].
The latest stable version is [1.0.0-pre4][latest-release].

Please track our release announcement to be informed about the production version (1.0.0) release.

Expand Down Expand Up @@ -46,7 +46,7 @@ or provide custom storage implementations.
If you need to use API with one of these annotations, please [contact us][email-developers].

[email-developers]: mailto:spine-developers@teamdev.com
[latest-release]: https://github.com/SpineEventEngine/core-java/releases/tag/1.0.0-pre1
[latest-release]: https://github.com/SpineEventEngine/core-java/releases/tag/1.0.0-pre4
[spine-site]: https://spine.io/
[wiki-home]: https://github.com/SpineEventEngine/core-java/wiki
[java-code-style]: https://github.com/SpineEventEngine/core-java/wiki/Java-Code-Style
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright 2019, TeamDev. All rights reserved.
*
* Redistribution and use in source and/or binary forms, with or without
* modification, must retain the above copyright notice and the following
* disclaimer.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
syntax = "proto3";

package spine.test.rejection;

import "spine/options.proto";

option (type_url_prefix) = "type.spine.io";
option (SPI_all) = true;
option java_package = "io.spine.test.rejection";

// An enrichment used in rejection tests.
//
message ProjectInfo {
option (enrichment_for) = "spine.test.rejection.InvalidProjectName";

string project_name = 1 [(by) = "spine.test.rejection.InvalidProjectName.project_id"];
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,3 @@ message MissingOwner {
ProjectId project_id = 1;
}

message ProjectInfo {
option (enrichment_for) = "InvalidProjectName";

string project_name = 1 [(by) = "InvalidProjectName.project_id"];
}
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* as we want to manage the versions in a single source.
*/

def final SPINE_VERSION = '1.0.0-SNAPSHOT'
def final SPINE_VERSION = '1.0.0-pre4'

ext {
// The version of the modules in this project.
Expand Down