From efda0b423ba6ae8e2e04303c43313510298197bf Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 10 Apr 2023 10:34:11 -0700 Subject: [PATCH] Rename repo (#193) And a little clean up. - Refs #192 - Closes #162 --- .github/workflows/documentation-links.yaml | 2 +- README.rst | 12 +++++------- package.json | 10 +++++----- pyproject.toml | 4 ++-- 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/documentation-links.yaml b/.github/workflows/documentation-links.yaml index 70671cda..6ff7673e 100644 --- a/.github/workflows/documentation-links.yaml +++ b/.github/workflows/documentation-links.yaml @@ -13,6 +13,6 @@ jobs: steps: - uses: readthedocs/actions/preview@v1 with: - project-slug: "read-the-docs-site-community" + project-slug: "read-the-docs-website" platform: "business" single-version: "true" # Has to be a string value. diff --git a/README.rst b/README.rst index e319492d..96bc9136 100644 --- a/README.rst +++ b/README.rst @@ -1,12 +1,10 @@ -Read the Docs - community website -================================= - -.. note:: - This repository is only for our community website for now. This may change - in the future. +Read the Docs website +===================== This repository contains the site content and static assets used to build the -Read the Docs community website. This includes: +Read the Docs website. You can view this site at https://about.readthedocs.com + +This repository includes: A Pelican project for our site content This includes our site content as well as our blog. diff --git a/package.json b/package.json index c9f2d8b6..5c82df16 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "site-community", + "name": "website", "version": "1.0.0", - "description": "Read the Docs community website", + "description": "Read the Docs website", "main": "src/js/site.js", "scripts": { "clean": "npm run clean-assets && npm run clean-html", @@ -20,14 +20,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/readthedocs/site-community.git" + "url": "git+https://github.com/readthedocs/website.git" }, "author": "Read the Docs, Inc", "license": "MIT", "bugs": { - "url": "https://github.com/readthedocs/site-community/issues" + "url": "https://github.com/readthedocs/website/issues" }, - "homepage": "https://github.com/readthedocs/site-community#readme", + "homepage": "https://github.com/readthedocs/website#readme", "engines": { "node": "<15.0.0", "npm": "<7.0.0" diff --git a/pyproject.toml b/pyproject.toml index ec8c185f..137e672c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] -name = "site-community" -version = "0.1.0" +name = "website" +version = "1.0.0" description = "Read the Docs website" authors = ["Read the Docs, Inc"]