Skip to content

Commit 211fda0

Browse files
committed
Renaming java-docs to apidocs
1 parent 3f45154 commit 211fda0

File tree

10 files changed

+27
-27
lines changed

10 files changed

+27
-27
lines changed

bin/release.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# This script will build the documentation from the current "src" branch. "mkdocs" must be available, and
4-
# you must be in a clean git environment ("git diff" should print nothing). The java-docs folder currently
4+
# you must be in a clean git environment ("git diff" should print nothing). The apidocs folder currently
55
# in the master branch will be saved in a tmp folder and then put back to replace the corresponding folder
66
# built from the src branch, which is just a placeholder.
77

@@ -24,13 +24,13 @@ mv site/ /tmp/tmp-folder-for-bullet-docs/
2424
echo Checking out master...
2525
git checkout master
2626
git pull
27-
# Save the JavaDocs currently in master branch
28-
mv java-docs/ /tmp/tmp-folder-for-bullet-docs/
27+
# Save the apidocs currently in master branch
28+
mv apidocs/ /tmp/tmp-folder-for-bullet-docs/
2929
rm -rf ./*
3030
cp -r /tmp/tmp-folder-for-bullet-docs/site/ ./
31-
# Delete fake java-docs and replace with saved ones
32-
rm -rf ./java-docs/
33-
mv /tmp/tmp-folder-for-bullet-docs/java-docs/ ./
31+
# Delete fake apidocs and replace with saved ones
32+
rm -rf ./apidocs/
33+
mv /tmp/tmp-folder-for-bullet-docs/apidocs/ ./
3434
rm -rf /tmp/tmp-folder-for-bullet-docs/
3535
git add -A
3636
git commit -m "Build at ${COMMIT}"

docs/releases.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ The core Bullet logic (a library) that can be used to implement Bullet on differ
2424

2525
### Releases
2626

27-
| Date | Release | Highlights | |
28-
| ------------ | ------------------------------------------------------------------------------------- | ---------- | |
29-
| 2018-06-26 | [**0.4.2**](https://github.com/bullet-db/bullet-core/releases/tag/bullet-core-0.4.2) | Fixes a bug with unclosed connections in the RESTPubSub | [JavaDocs](java-docs/bullet-core/0.4.2/index.html) |
27+
| Date | Release | Highlights | APIDocs |
28+
| ------------ | ------------------------------------------------------------------------------------- | ---------- | ------- |
29+
| 2018-06-26 | [**0.4.2**](https://github.com/bullet-db/bullet-core/releases/tag/bullet-core-0.4.2) | Fixes a bug with unclosed connections in the RESTPubSub | [JavaDocs](apidocs/bullet-core/0.4.2/index.html) |
3030
| 2018-06-22 | [**0.4.1**](https://github.com/bullet-db/bullet-core/releases/tag/bullet-core-0.4.1) | Added RESTPublisher HTTP Timeout Setting | |
3131
| 2018-06-18 | [**0.4.0**](https://github.com/bullet-db/bullet-core/releases/tag/bullet-core-0.4.0) | Added support for Integer and Float data types, and configurable BulletRecordProvider class used to instantiate BulletRecords in bullet-core | |
3232
| 2018-04-11 | [**0.3.4**](https://github.com/bullet-db/bullet-core/releases/tag/bullet-core-0.3.4) | Pre-Start delaying and Buffering changes - queries are now buffered at the start of a query instead of start of each window | |
@@ -66,9 +66,9 @@ The implementation of Bullet on Storm. Due to major API changes between Storm <=
6666

6767
### Releases
6868

69-
| Date | Storm 1.0 | Storm 0.10 | Highlights | |
70-
| ------------ | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | ---------- | |
71-
| 2018-06-18 | [**0.8.3**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.8.3) | [**0.8.3**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.10-0.8.3) | Using new bullet-record and bullet-core supporting Integer and Float data types | [JavaDocs](java-docs/bullet-storm/0.8.3/index.html) |
69+
| Date | Storm 1.0 | Storm 0.10 | Highlights | APIDocs |
70+
| ------------ | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | ---------- | ------- |
71+
| 2018-06-18 | [**0.8.3**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.8.3) | [**0.8.3**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.10-0.8.3) | Using new bullet-record and bullet-core supporting Integer and Float data types | [JavaDocs](apidocs/bullet-storm/0.8.3/index.html) |
7272
| 2018-04-12 | [**0.8.2**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.8.2) | [**0.8.2**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.10-0.8.2) | Delaying query start in Join Bolt | |
7373
| 2018-04-04 | [**0.8.1**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.8.1) | [**0.8.1**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.10-0.8.1) | Fixed bug in JoinBolt | |
7474
| 2018-03-30 | [**0.8.0**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.8.0) | [**0.8.0**](https://github.com/bullet-db/bullet-storm/releases/tag/bullet-storm-0.10-0.8.0) | Supports windowing / incremental updates | |
@@ -101,9 +101,9 @@ The implementation of Bullet on Spark Streaming.
101101

102102
### Releases
103103

104-
| Date | Release | Highlights | |
105-
| ------------ | --------------------------------------------------------------------------------- | ---------- | |
106-
| 2018-06-18 | [**0.1.2**](https://github.com/bullet-db/bullet-spark/releases/tag/bullet-spark-0.1.2) | Uses SimpleBulletRecord to avoid some Spark serialization issues with Avro | [SparkDocs](java-docs/bullet-spark/0.1.2/index.html) |
104+
| Date | Release | Highlights | APIDocs |
105+
| ------------ | --------------------------------------------------------------------------------- | ---------- | ------- |
106+
| 2018-06-18 | [**0.1.2**](https://github.com/bullet-db/bullet-spark/releases/tag/bullet-spark-0.1.2) | Uses SimpleBulletRecord to avoid some Spark serialization issues with Avro | [SparkDocs](apidocs/bullet-spark/0.1.2/index.html) |
107107
| 2018-06-08 | [**0.1.1**](https://github.com/bullet-db/bullet-spark/releases/tag/bullet-spark-0.1.1) | Adds a command flag to pass custom setting file | |
108108
| 2018-05-25 | [**0.1.0**](https://github.com/bullet-db/bullet-spark/releases/tag/bullet-spark-0.1.0) | The first release | |
109109

@@ -125,9 +125,9 @@ The Web Service implementation that can serve a static schema from a file and ta
125125

126126
### Releases
127127

128-
| Date | Release | Highlights | |
129-
| ------------ | -------------------------------------------------------------------------------------- | ---------- | |
130-
| 2018-07-17 | [**0.4.0**](https://github.com/bullet-db/bullet-service/releases/tag/bullet-service-0.4.0) | Enhanced Web Service to support BQL queries | [JavaDocs](java-docs/bullet-service/0.4.0/index.html) |
128+
| Date | Release | Highlights | APIDocs |
129+
| ------------ | -------------------------------------------------------------------------------------- | ---------- | ------- |
130+
| 2018-07-17 | [**0.4.0**](https://github.com/bullet-db/bullet-service/releases/tag/bullet-service-0.4.0) | Enhanced Web Service to support BQL queries | [JavaDocs](apidocs/bullet-service/0.4.0/index.html) |
131131
| 2018-06-25 | [**0.3.0**](https://github.com/bullet-db/bullet-service/releases/tag/bullet-service-0.3.0) | Upgrades to Netty-less Bullet Core for the RESTPubsub | |
132132
| 2018-06-14 | [**0.2.2**](https://github.com/bullet-db/bullet-service/releases/tag/bullet-service-0.2.2) | Adding settings to configure Websocket | |
133133
| 2018-04-02 | [**0.2.1**](https://github.com/bullet-db/bullet-service/releases/tag/bullet-service-0.2.1) | Moved and renamed settings | |
@@ -179,9 +179,9 @@ The AVRO container that you need to convert your data into to be consumed by Bul
179179

180180
### Releases
181181

182-
| Date | Release | Highlights | |
183-
| ------------ | ------------------------------------------------------------------------------------ | ---------- | |
184-
| 2018-06-14 | [**0.2.0**](https://github.com/bullet-db/bullet-record/releases/tag/bullet-record-0.2.0) | Makes BulletRecord pluggable, adds simple record and avro record implementations | [JavaDocs](java-docs/bullet-record/0.2.0/index.html) |
182+
| Date | Release | Highlights | APIDocs |
183+
| ------------ | ------------------------------------------------------------------------------------ | ---------- | ------- |
184+
| 2018-06-14 | [**0.2.0**](https://github.com/bullet-db/bullet-record/releases/tag/bullet-record-0.2.0) | Makes BulletRecord pluggable, adds simple record and avro record implementations | [JavaDocs](apidocs/bullet-record/0.2.0/index.html) |
185185
| 2017-05-19 | [**0.1.2**](https://github.com/bullet-db/bullet-record/releases/tag/bullet-record-0.1.2) | Reduces the memory footprint needed to serialize itself by a factor of 128 for small records | |
186186
| 2017-04-17 | [**0.1.1**](https://github.com/bullet-db/bullet-record/releases/tag/bullet-record-0.1.1) | Helper methods to remove, rename, check presence and count fields in the Record | |
187187
| 2017-02-09 | [**0.1.0**](https://github.com/bullet-db/bullet-record/releases/tag/bullet-record-0.1.0) | Map constructor | |
@@ -200,9 +200,9 @@ A PubSub implementation using Kafka as the backing PubSub. Can be used with any
200200

201201
### Releases
202202

203-
| Date | Release | Highlights | |
204-
| ------------ | ------------------------------------------------------------------------------------ | ---------- | |
205-
| 2018-02-27 | [**0.3.0**](https://github.com/bullet-db/bullet-kafka/releases/tag/bullet-kafka-0.3.0) | Uses bullet-core-0.3.0 - windows / incremental updates | [JavaDocs](java-docs/bullet-kafka/0.3.3/index.html) |
203+
| Date | Release | Highlights | APIDocs |
204+
| ------------ | ------------------------------------------------------------------------------------ | ---------- | ------- |
205+
| 2018-02-27 | [**0.3.0**](https://github.com/bullet-db/bullet-kafka/releases/tag/bullet-kafka-0.3.0) | Uses bullet-core-0.3.0 - windows / incremental updates | [JavaDocs](apidocs/bullet-kafka/0.3.0/index.html) |
206206
| 2017-10-19 | [**0.2.0**](https://github.com/bullet-db/bullet-kafka/releases/tag/bullet-kafka-0.2.0) | Refactors and re-releases. Pass-through settings to Kafka. Manual offset committing bug fix | |
207207
| 2017-09-27 | [**0.1.2**](https://github.com/bullet-db/bullet-kafka/releases/tag/bullet-kafka-0.1.2) | Fixes a bug with config loading | |
208208
| 2017-09-22 | [**0.1.1**](https://github.com/bullet-db/bullet-kafka/releases/tag/bullet-kafka-0.1.1) | First release using the PubSub interfaces | |
@@ -221,7 +221,7 @@ A library facilitating the conversion from Bullet BQL queries to Bullet JSON que
221221

222222
### Releases
223223

224-
| Date | Release | Highlights | |
225-
| ------------ | ------------------------------------------------------------------------------------ | ---------- | |
226-
| 2018-07-17 | [**0.1.1**](https://github.com/bullet-db/bullet-bql/releases/tag/bullet-bql-0.1.1) | Stops publishing fat jar and marks slf4j dependency provided | [JavaDocs](java-docs/bullet-bql/0.1.1/index.html) |
224+
| Date | Release | Highlights | APIDocs |
225+
| ------------ | ------------------------------------------------------------------------------------ | ---------- | ------- |
226+
| 2018-07-17 | [**0.1.1**](https://github.com/bullet-db/bullet-bql/releases/tag/bullet-bql-0.1.1) | Stops publishing fat jar and marks slf4j dependency provided | [JavaDocs](apidocs/bullet-bql/0.1.1/index.html) |
227227
| 2018-07-05 | [**0.1.0**](https://github.com/bullet-db/bullet-bql/releases/tag/bullet-bql-0.1.0) | First release | |

0 commit comments

Comments
 (0)