Skip to content

Commit

Permalink
update for release 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Mar 14, 2023
1 parent 5ed73a2 commit 9a434e0
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions docs/v2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Asciidoctor 2.0.15">
<meta name="author" content="Library for OpenAPI 3 with spring-boot By Badr NASS LAHSEN">
<title>springdoc-openapi v2.0.3</title>
<title>springdoc-openapi v2.0.4</title>
<link rel="stylesheet" href="css/site.css">
<style>
#header #revnumber {
Expand All @@ -33,7 +33,7 @@
<div id="main" class="contained">
<div id="doc" class="doc">
<div id="header">
<h1>springdoc-openapi v2.0.3</h1>
<h1>springdoc-openapi v2.0.4</h1>
<div class="details">
<span id="author" class="author">Library for OpenAPI 3 with spring-boot By Badr NASS LAHSEN</span><br>
</div>
Expand Down Expand Up @@ -295,7 +295,7 @@ <h2 id="getting-started"><a class="anchor" href="#getting-started"></a>2. Gettin
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
&lt;artifactId&gt;springdoc-openapi-starter-webmvc-ui&lt;/artifactId&gt;
&lt;version&gt;2.0.3&lt;/version&gt;
&lt;version&gt;2.0.4&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -404,7 +404,7 @@ <h3 id="spring-webmvc-support"><a class="anchor" href="#spring-webmvc-support"><
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
&lt;artifactId&gt;springdoc-openapi-starter-webmvc-api&lt;/artifactId&gt;
&lt;version&gt;2.0.3&lt;/version&gt;
&lt;version&gt;2.0.4&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -456,7 +456,7 @@ <h3 id="spring-webflux-support"><a class="anchor" href="#spring-webflux-support"
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
&lt;artifactId&gt;springdoc-openapi-starter-webflux-ui&lt;/artifactId&gt;
&lt;version&gt;2.0.3&lt;/version&gt;
&lt;version&gt;2.0.4&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -2149,7 +2149,7 @@ <h2 id="migrating-from-springfox"><a class="anchor" href="#migrating-from-spring
<pre class="highlight"><code class="language-xml" data-lang="xml"> &lt;dependency&gt;
&lt;groupId&gt;org.springdoc&lt;/groupId&gt;
&lt;artifactId&gt;springdoc-openapi-starter-webmvc-ui&lt;/artifactId&gt;
&lt;version&gt;2.0.3&lt;/version&gt;
&lt;version&gt;2.0.4&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>
</div>
Expand Down Expand Up @@ -4315,7 +4315,7 @@ <h3 id="what-is-the-compatibility-matrix-of-springdoc-openapi-with-spring-boot">
<p><code>springdoc-openapi 2.x</code> is compatible with <code>spring-boot 3</code>.</p>
</div>
<div class="paragraph">
<p>In general, <strong>you should only pick the last stable version as per today 2.0.3.</strong></p>
<p>In general, <strong>you should only pick the last stable version as per today 2.0.4.</strong></p>
</div>
<div class="paragraph">
<p>More precisely, this the exhaustive list of spring-boot versions against which <code>springdoc-openapi</code> has been built:</p>
Expand Down Expand Up @@ -4384,7 +4384,7 @@ <h3 id="what-is-the-compatibility-matrix-of-springdoc-openapi-with-spring-boot">
</div>
<div id="footer">
<div id="footer-text">
Last updated 2023-03-10 07:16:18 +0100
Last updated 2023-03-15 00:51:13 +0100
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/v2/faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ For the UI, you will have to add `springdoc.enable-native-support=true`. This is
=== What is the compatibility matrix of `springdoc-openapi` with `spring-boot` ?
`springdoc-openapi 2.x` is compatible with `spring-boot 3`.

In general, **you should only pick the last stable version as per today 2.0.3.**
In general, **you should only pick the last stable version as per today 2.0.4.**

More precisely, this the exhaustive list of spring-boot versions against which `springdoc-openapi` has been built:

Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/v2/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For the integration between spring-boot and swagger-ui, add the library to the l
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
----

Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/v2/index.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= springdoc-openapi v2.0.3
= springdoc-openapi v2.0.4
Library for OpenAPI 3 with spring-boot By Badr NASS LAHSEN
include::_attributes.adoc[]

Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/v2/migrating-from-springfox.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
----

Expand Down
4 changes: 2 additions & 2 deletions src/docs/asciidoc/v2/modules.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ image::img/common.png[Architecture]
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
----

Expand All @@ -43,7 +43,7 @@ springdoc.api-docs.path=/api-docs
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
<version>2.0.3</version>
<version>2.0.4</version>
</dependency>
----

Expand Down

0 comments on commit 9a434e0

Please sign in to comment.