Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The overview page has been rewritten to be more concise and informative (#512, #515, #516).
- FSD has updated its branding, and there are now guidelines to the brand usage. The standard spelling of the name is now "Feature-Sliced Design" (#496, #499, #500, #465).

[2.0.0]: feature-sliced/documentation/releases/tag/v2.0.0
[2.0.0]: https://github.com/feature-sliced/documentation/releases/tag/v2.0.0
2 changes: 1 addition & 1 deletion config/docusaurus/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const presets = [
showLastUpdateTime: true,
versions: {
current: {
label: `v2.0-beta 🍰`,
label: `v2.0.0 🍰`,
},
},
sidebarItemsGenerator,
Expand Down
2 changes: 1 addition & 1 deletion i18n/en/docusaurus-plugin-content-docs/current.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version.label": {
"message": "v2.0-beta 🍰",
"message": "v2.0.0 🍰",
"description": "The label for version current"
},
"sidebar.getstartedSidebar.category.Tutorials": {
Expand Down
2 changes: 1 addition & 1 deletion i18n/ru/docusaurus-plugin-content-docs/current.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version.label": {
"message": "v2.0-beta 🍰",
"message": "v2.0.0 🍰",
"description": "The label for version current"
},
"sidebar.getstartedSidebar.category.🚀 Get Started": {
Expand Down
2 changes: 1 addition & 1 deletion i18n/uz/docusaurus-plugin-content-docs/current.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version.label": {
"message": "v2.0-beta 🍰",
"message": "v2.0.0 🍰",
"description": "The label for version current"
},
"sidebar.getstartedSidebar.category.Tutorials": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@feature-sliced/documentation",
"version": "2.0.0-beta",
"version": "2.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/versions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ function Version() {

{latestVersion && (
<div className="margin-bottom--lg">
<h3 id="next">Feature-Sliced Design v2.0-beta (Current)</h3>
<h3 id="next">Feature-Sliced Design v2.0.0 (Current)</h3>
<p>{translate({ id: "pages.versions.current" })}</p>
<Table>
<Table.Row
th={latestVersion.label}
href={`${repoUrl}/releases/tag/v${latestVersion.name}`}
href={`${repoUrl}/releases/tag/v2.0.0`}
hrefTitle="Release Notes"
>
<td>
Expand Down