0
0
Fork 0
mirror of https://github.com/semver/semver.org.git synced 2026-04-21 06:09:51 +00:00
Semantic Versioning spec and website https://semver.org
  • SCSS 38.7%
  • JavaScript 22.2%
  • HTML 16.6%
  • CSS 15%
  • Dockerfile 4.4%
  • Other 3.1%
Find a file
dependabot[bot] 5b45a4699f
chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 (#505)
Bumps [picomatch](https://github.com/micromatch/picomatch) from 2.3.1 to 2.3.2.
- [Release notes](https://github.com/micromatch/picomatch/releases)
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2)

---
updated-dependencies:
- dependency-name: picomatch
  dependency-version: 2.3.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-26 19:25:44 +09:00
.github Update PR template checklist for spec directory changes (#500) 2026-02-28 10:22:14 +09:00
_layouts Remove unused css files (#447) 2025-10-27 20:15:31 +09:00
assets Add SVG files 2023-11-23 15:01:25 +09:00
css Add Bengali translation for SemVer documentation (Resolves #417) (#484) 2026-01-01 13:45:12 +09:00
js Format files with Prettier 2022-07-23 20:59:06 +09:00
lang Minor textual changes (#504) 2026-03-09 19:24:03 +09:00
script use single layout for all translations 2016-08-04 19:20:31 -04:00
scripts fix: Updated sync script to update index.md 2020-06-21 13:33:22 +03:00
spec feat: Updated SemVer spec 2023-05-07 03:05:09 +00:00
.gitattributes Add a .gitattributes file to deal with line endings 2016-08-05 15:05:04 -07:00
.gitignore feat: Added sync script 2020-06-12 22:36:49 +03:00
.prettierignore Remove unused css files (#447) 2025-10-27 20:15:31 +09:00
.prettierrc Fix formatting for _config.yml 2022-07-26 20:28:16 +09:00
.remarkrc feat: Added mdash-style rule 2020-06-14 12:07:49 +03:00
_config.yml Support both versions of Serbian (Cyrillic & Latin) (#481) 2026-02-28 10:46:52 +09:00
_config_local.yml use single layout for all translations 2016-08-04 19:20:31 -04:00
CNAME First commit 2009-12-14 15:03:31 -08:00
docker-compose.yml Format files with Prettier 2022-07-23 20:59:06 +09:00
Dockerfile Ease development using docker-compose 2019-01-28 23:36:03 +01:00
Gemfile use single layout for all translations 2016-08-04 19:20:31 -04:00
index.md feat: Updated SemVer spec 2023-05-07 03:05:09 +00:00
package-lock.json chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 (#505) 2026-03-26 19:25:44 +09:00
package.json chore(deps-dev): bump js-yaml from 4.1.0 to 4.1.1 (#489) 2025-11-15 21:10:46 +09:00
README.md Rename asstets folder to assets 2020-10-30 17:51:17 -04:00
TRANSLATORS.md Updates to the NL translations (#499) 2026-03-05 19:14:20 +09:00

logo

This is the site at https://semver.org/ that describes the Semantic Versioning specification.

Adding a translation

  1. Create a new folder in lang/ with the appropriate language tag
  2. Add a translated index.md to that folder
  3. Add a translated spec/vX.X.X.md for the latest spec to that folder
  4. Ensure all files have the appropriate title and language front matter (see others as an example)
  5. Add the language to the _config.yml file

Running locally

  1. Install Ruby and Bundler.
  2. Install Jekyll and other dependencies from the gem:
    bundle install
    
  3. Run the site locally:
    bundle exec jekyll serve
    
  4. Open http://localhost:4000.

Running locally with docker-compose

If you have docker-compose installed:

  1. Build Docker image and start container instance:
    docker-compose up
    
  2. Open http://localhost:4000.