Skip to content

Commit 0718280

Browse files
author
Ruslan Molchanov
committed
Merge branch 'sprint' into 'master'
Sprint to Master See merge request open-platform/api!29
2 parents 6c53902 + 5d57971 commit 0718280

File tree

5 files changed

+56
-11404
lines changed

5 files changed

+56
-11404
lines changed

CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [2.0.0] - 2018-06-04
10+
### Added
11+
- Scaffold activation: transfer at least 10 OPEN Tokens to a scaffold to make it active.
12+
- Active scaffold flag
13+
- Scaffold activating message
14+
- Scaffold list pagination
15+
- Immediate funds withdrawal. Now contract amount is directly transferred to developers wallet without additional
16+
actions required.
17+
- Logo - link to /scaffolds
18+
- Link to Etherscan
19+
20+
### Changed
21+
- API code refactored from Node.js to Kotlin
22+
- Google authentication
23+
- Log in
24+
- Log out
25+
- Get current user
26+
- Save user after authentication
27+
- Scaffold processing
28+
- Scaffold template processing
29+
- Scaffold compiling
30+
- Scaffold deploy
31+
- Scaffold display
32+
- Get scaffolds of current user
33+
- Get scaffold by his address
34+
- API web interface is refactored
35+
- Front-end build into target back-end directory
36+
- Routing and link refactoring
37+
- Supply integration with new API
38+
- Default currency and auto convert into Ethereum
39+
- Creating scaffold with key select input
40+
41+
### Removed
42+
- "Withdraw" button is removed
43+
44+
[Unreleased]: https://github.com/OpenFuturePlatform/open-api/compare/master...sprint
45+
[2.0.0]: https://github.com/OpenFuturePlatform/open-api/compare/8ea69084ef657f66976518827873c9c922970ce6...v2.0.0

LICENSE.txt

-21
This file was deleted.

build.gradle

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
apply plugin: "io.spring.dependency-management"
1111

1212
group = "io.openfuture.api"
13-
version = "1.0.0"
13+
version = "2.0.0"
1414
sourceCompatibility = JavaVersion.VERSION_1_8
1515

1616
repositories {
@@ -20,7 +20,9 @@ repositories {
2020
}
2121
}
2222

23-
ext.s3Version = "1.11.333"
23+
ext {
24+
s3Version = "1.11.333"
25+
}
2426

2527
dependencies {
2628
// Spring
@@ -37,11 +39,11 @@ dependencies {
3739
runtime("org.postgresql:postgresql")
3840
compile("org.flywaydb:flyway-core")
3941

40-
//Ethereum
42+
// Ethereum
4143
compile("org.web3j:core:3.4.0")
4244
compile("org.ethereum:ethereumj-core:1.7.2-RELEASE")
4345

44-
//AWS
46+
// AWS
4547
compile("com.amazonaws:aws-java-sdk-s3:${s3Version}")
4648

4749
// Kotlin
@@ -52,7 +54,7 @@ dependencies {
5254
// Utils
5355
compile("commons-io:commons-io:2.6")
5456

55-
//Test
57+
// Test
5658
testCompile("org.springframework.boot:spring-boot-starter-test")
5759
}
5860

0 commit comments

Comments
 (0)