This is an automated email from the ASF dual-hosted git repository. aradzinski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-website.git
commit b77e70fb9c8374cf789dc254c349075d56448848 Author: Aaron Radzinski <[email protected]> AuthorDate: Mon Jan 18 18:52:06 2021 -0800 Added breaking change notice to 0.7.3 release notes. --- _data/bin-releases.yml | 2 +- _data/src-releases.yml | 2 +- _layouts/release-notes.html | 2 +- _scss/relnotes.scss | 23 +++++++++++++++++++++++ assets/css/style.scss | 1 + relnotes/release-notes-0.7.3.html | 6 ++++++ 6 files changed, 33 insertions(+), 3 deletions(-) diff --git a/_data/bin-releases.yml b/_data/bin-releases.yml index f594bce..8d7c757 100644 --- a/_data/bin-releases.yml +++ b/_data/bin-releases.yml @@ -23,7 +23,7 @@ pgp_url: https://github.com/aradzinski/binstore/releases/download/v0.7.3/apache-nlpcraft-incubating-bin-0.7.3.zip.asc github_link: https://github.com/apache/incubator-nlpcraft/tree/v0.7.3 # dockerhub_link: https://hub.docker.com/r/nlpcraftserver/server - backward_compatible: yes + backward_compatible: no - version: 0.7.2 date: Nov 19, 2020 diff --git a/_data/src-releases.yml b/_data/src-releases.yml index 83b2692..a7ecf54 100644 --- a/_data/src-releases.yml +++ b/_data/src-releases.yml @@ -22,7 +22,7 @@ sha256_url: https://downloads.apache.org/incubator/nlpcraft/nlpcraft/apache-nlpcraft-incubating-0.7.3.zip.sha256 pgp_url: https://downloads.apache.org/incubator/nlpcraft/nlpcraft/apache-nlpcraft-incubating-0.7.3.zip.asc github_link: https://github.com/apache/incubator-nlpcraft/tree/v0.7.3 - backward_compatible: yes + backward_compatible: no - version: 0.7.2 date: Nov 19, 2020 diff --git a/_layouts/release-notes.html b/_layouts/release-notes.html index fec5ec7..96bebda 100644 --- a/_layouts/release-notes.html +++ b/_layouts/release-notes.html @@ -19,7 +19,7 @@ layout: default limitations under the License. --> -<div class="container-fluid"> +<div id="relnotes" class="container-fluid"> <div class="navbar-aligned"> <ol class="breadcrumb"> <li class="mr-1"><a href="index.html">Home</a></li> diff --git a/_scss/relnotes.scss b/_scss/relnotes.scss new file mode 100644 index 0000000..e6b9272 --- /dev/null +++ b/_scss/relnotes.scss @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#relnotes { + i.fa-bomb { + color: $color-pomegranate; + font-size: 90%; + } +} \ No newline at end of file diff --git a/assets/css/style.scss b/assets/css/style.scss index e7399c9..6106770 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -44,6 +44,7 @@ $default-font: "Helvetica Neue"; @import 'installation'; @import 'community'; @import 'blogs'; +@import 'relnotes'; html { position: relative; diff --git a/relnotes/release-notes-0.7.3.html b/relnotes/release-notes-0.7.3.html index 45f5289..0284321 100644 --- a/relnotes/release-notes-0.7.3.html +++ b/relnotes/release-notes-0.7.3.html @@ -25,6 +25,12 @@ layout: release-notes <p> <a href="/download.html">NLPCraft 0.7.3</a> brings about several important bug fixes, improvements and enhancements. </p> + <div class="bq warn"> + <b><i class="fas fa-fw fa-bomb"></i> Breaking Changes</b> + <p> + Class <a target="javadoc" href="/apis/latest/org/apache/nlpcraft/model/tools/embedded/NCEmbeddedProbe.html">NCEmbeddedProbe</a> has changed its API in incompatible way. + </p> + </div> </section> <section id="new"> <h2 class="section-title">🙌 New</h2>
