Skip to content

Commit 1285332

Browse files
committed
prepared 0.1.0-M1 release notes
Signed-off-by: Thomas Jaeckle <[email protected]>
1 parent 5e9e59c commit 1285332

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-13
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Find the documentation on the project site: [https://eclipse.org/ditto/](https:/
1414
## Getting started
1515

1616
In order to start up Ditto, you'll need
17-
* JDK 8 >= 1.8.0_92 (due to a bug in older versions of the JDK you'll get a compile error)
18-
* Apache Maven 3.x installed
1917
* a running Docker daemon (at least version 17.06 CE)
2018
* Docker Compose installed (at least version 1.14)
2119

@@ -33,8 +31,15 @@ Check the logs after starting up:
3331
docker-compose logs -f
3432
```
3533

34+
Open following URL to get started: [http://localhost:8080](http://localhost:8080)<br/>
35+
Or have a look at the ["Hello World"](https://eclipse.org/ditto/intro-hello-world.html)
36+
3637
### Build and start Ditto
3738

39+
In order to build Ditto, you'll need
40+
* JDK 8 >= 1.8.0_92 (due to a bug in older versions of the JDK you'll get a compile error)
41+
* Apache Maven 3.x installed
42+
3843
In order to first build Ditto and then start the built Docker images
3944

4045
```bash

documentation/src/main/resources/_data/sidebars/ditto_sidebar.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ entries:
2424
output: web
2525
folderitems:
2626

27-
- title: 0.1.0M1 Release notes
28-
url: /release_notes_010M1.html
27+
- title: 0.1.0-M1 Release notes
28+
url: /release_notes_010-M1.html
2929
output: web
3030

3131
- title: Installation

documentation/src/main/resources/_posts/2017-11-10-welcome-to-ditto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Meanwhile we worked on setting up the project site and documentation which we ha
1818

1919
The [HTTP API Documentation](http-api-doc.html) is already complete and describes both of our API versions 1 and 2.
2020

21-
Next we focus on releasing a first Milestone `0.1.0M1` including images on [Docker Hub](https://hub.docker.com/u/eclipse/)
21+
Next we focus on releasing a first Milestone `0.1.0-M1` including images on [Docker Hub](https://hub.docker.com/u/eclipse/)
2222
so that you can try out Eclipse Ditto more easily without building it first.
2323

2424
We are looking forward to any feedback you have via our [Feedback channels](feedback.html).

documentation/src/main/resources/_posts/2017-12-14-milestone-announcement-010M1.md documentation/src/main/resources/_posts/2017-12-18-milestone-announcement-010-M1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: "Announcing Ditto Milestone 0.1.0M1"
2+
title: "Announcing Ditto Milestone 0.1.0-M1"
33
published: true
4-
permalink: 2017-12-14-milestone-announcement-010M1.html
4+
permalink: 2017-12-18-milestone-announcement-010-M1.html
55
layout: post
66
author: thomas_jaeckle
77
tags: [blog]
88
hide_sidebar: true
99
sidebar: false
1010
---
1111

12-
We finally managed to build our first milestone of Eclipse Ditto: [0.1.0M1](release_notes_010M1.html)
12+
We finally managed to build our first milestone of Eclipse Ditto: [0.1.0-M1](release_notes_010-M1.html)
1313

1414
Java artifacts were published to both the [Eclipse Maven repository](https://repo.eclipse.org/content/repositories/ditto/)
1515
as well as [Maven central](repo1.maven.org/maven2/org/eclipse/ditto/).

documentation/src/main/resources/pages/ditto/intro-hello-world.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ Inside that JSON object we can add as much JSON keys as we like with any JSON va
5353

5454
## Creating your first Thing
5555

56-
We create a Thing for the example from above by using [cURL](https://github.com/curl/curl). Basic authentication will use the credentials of a user "ditto". Those credentials have been created by default in the [nginx](https://github.com/nginx/nginx) started via "docker". (See ditto/docker/README.md)
56+
We create a Thing for the example from above by using [cURL](https://github.com/curl/curl). Basic authentication will use the credentials of a user "ditto".
57+
Those credentials have been created by default in the [nginx](https://github.com/nginx/nginx) started via "docker".
58+
(See [ditto/docker/README.md](https://github.com/eclipse/ditto/blob/master/docker/README.md))
5759

5860
```bash
5961
curl -u ditto:ditto -X PUT -d '{
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Release notes 0.1.0M1
2+
title: Release notes 0.1.0-M1
33
tags: [release_notes]
44
keywords: release notes, announcements, changelog
5-
summary: "Version 0.1.0M1 of Eclipse Ditto, released on 14.12.2017"
6-
permalink: release_notes_010M1.html
5+
summary: "Version 0.1.0-M1 of Eclipse Ditto, released on 18.12.2017"
6+
permalink: release_notes_010-M1.html
77
---
88

9-
Eclipse Ditto 0.1.0M1 is the first milestone of Eclipse Ditto.
9+
Eclipse Ditto 0.1.0-M1 is the first milestone of Eclipse Ditto.
1010

1111
In the future at this point you'll find the release notes for a milestone or a full release.

0 commit comments

Comments
 (0)