Skip to content

Commit 89e8105

Browse files
committed
Merge branch 'sprint' into 'master'
Sprint to Master Closes OP-159 See merge request open-platform/api!198
2 parents c50a63b + a9e773d commit 89e8105

24 files changed

+9433
-2519
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [2.6.0] - 2018-08-02
10+
### Added
11+
- Payment widget. Now you can pay a scaffold using a widget.
12+
- Widget: an iFrame element for embedding the payment widget to the seller's website
13+
- Widget: Browser detecting logic
14+
- Widget: Error tips
15+
- Widget: Web3 script with required functionality
16+
917
## [2.5.0] - 2018-07-27
1018
### Added
1119
- Scaffold v2
@@ -134,6 +142,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
134142
- "Withdraw" button is removed
135143

136144
[Unreleased]: https://github.com/OpenFuturePlatform/open-api/compare/master...sprint
145+
[2.6.0]: https://github.com/OpenFuturePlatform/open-api/compare/v2.5.0...v2.6.0
137146
[2.5.0]: https://github.com/OpenFuturePlatform/open-api/compare/v2.4.0...v2.5.0
138147
[2.4.0]: https://github.com/OpenFuturePlatform/open-api/compare/v2.3.0...v2.4.0
139148
[2.3.0]: https://github.com/OpenFuturePlatform/open-api/compare/v2.2.1...v2.3.0

build.gradle

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ plugins {
55
id "org.jetbrains.kotlin.kapt" version "1.2.51"
66
id "org.jetbrains.kotlin.plugin.spring" version "1.2.51"
77
id "org.jetbrains.kotlin.plugin.jpa" version "1.2.51"
8-
id "org.springframework.boot" version "2.0.3.RELEASE"
8+
id "org.springframework.boot" version "2.0.4.RELEASE"
99
}
1010

1111
apply plugin: "io.spring.dependency-management"
1212

1313
group = "io.openfuture.api"
14-
version = "2.5.0"
14+
version = "2.6.0"
1515
sourceCompatibility = JavaVersion.VERSION_1_8
1616

1717
repositories {
@@ -62,6 +62,7 @@ dependencies {
6262
sourceSets {
6363
main.kotlin.srcDirs += 'src/main/kotlin'
6464
main.resources.srcDirs += 'frontend/build/resources'
65+
main.resources.srcDirs += 'widget/build/resources'
6566
}
6667

6768
// Kotlin
@@ -100,4 +101,5 @@ jacocoTestReport {
100101
check.dependsOn jacocoTestReport
101102

102103
// Front
103-
processResources.dependsOn(':frontend:assemble')
104+
processResources.dependsOn(':frontend:assemble')
105+
processResources.dependsOn(':widget:assemble')

0 commit comments

Comments
 (0)