├── .assets ├── monthly-patching.png ├── screenshot-apple-cal.png ├── screenshot-google-cal.png └── timeline-gantt.png ├── .github └── workflows │ └── update-files.yml ├── .gitignore ├── .vscode └── settings.json ├── CALENDAR.md ├── Justfile ├── LICENSE ├── README.md ├── badges ├── polkadot-sdk-latest.svg └── polkadot-sdk-next.svg ├── releases-v1.ics ├── releases-v1.json ├── releases-v1.schema.json └── scripts ├── manage.py ├── requirements.txt ├── update-badges.py ├── update-calendar.py ├── update-gantt.py └── update-readme.py /.assets/monthly-patching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.assets/monthly-patching.png -------------------------------------------------------------------------------- /.assets/screenshot-apple-cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.assets/screenshot-apple-cal.png -------------------------------------------------------------------------------- /.assets/screenshot-google-cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.assets/screenshot-google-cal.png -------------------------------------------------------------------------------- /.assets/timeline-gantt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.assets/timeline-gantt.png -------------------------------------------------------------------------------- /.github/workflows/update-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.github/workflows/update-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | 3 | .idea/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CALENDAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/CALENDAR.md -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/README.md -------------------------------------------------------------------------------- /badges/polkadot-sdk-latest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/badges/polkadot-sdk-latest.svg -------------------------------------------------------------------------------- /badges/polkadot-sdk-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/badges/polkadot-sdk-next.svg -------------------------------------------------------------------------------- /releases-v1.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/releases-v1.ics -------------------------------------------------------------------------------- /releases-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/releases-v1.json -------------------------------------------------------------------------------- /releases-v1.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/releases-v1.schema.json -------------------------------------------------------------------------------- /scripts/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/manage.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/update-badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/update-badges.py -------------------------------------------------------------------------------- /scripts/update-calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/update-calendar.py -------------------------------------------------------------------------------- /scripts/update-gantt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/update-gantt.py -------------------------------------------------------------------------------- /scripts/update-readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/release-registry/HEAD/scripts/update-readme.py --------------------------------------------------------------------------------