Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the default version for 'version selector' #135

Merged
merged 2 commits into from
Jun 30, 2023
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# How to run locally?

1. Clone the repository
2. Run `yarn` to install all the required packages.
3. Run `yarn dev` to start server for development mode.

# Change the default version

Refer [this](https://github.com/open-metadata/docs-v1/pull/135) PR to change the default version for the `version selector` on the top navigation bar

# Docs with Markdoc

To add content to the docs use markdown files. Some custom markdoc tags are listed below for adding content with predefined styling.
Expand Down
4 changes: 2 additions & 2 deletions constants/version.constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { SelectOption } from "../components/SelectDropdown/SelectDropdown";

export const DEFAULT_VERSION = "v1.0.0";
export const STABLE_VERSION = "v1.0.0";
export const DEFAULT_VERSION = "v1.1.0";
export const STABLE_VERSION = "v1.1.0";

export const VERSION_SELECT_DEFAULT_OPTIONS: Array<SelectOption<string>> = [
{
Expand Down