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
6 changes: 5 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ archived_version = false
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
version = "v0.1.2"
version = "v0.2.0"

# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
Expand All @@ -125,6 +125,10 @@ url_latest_version = "https://cdevents.dev/docs"
version = "latest"
url = "https://cdevents.dev/docs"

[[params.versions]]
version = "v0.1.2"
url = "https://github.com/cdevents/spec/tree/v0.1.2/spec.md"

[[params.versions]]
version = "v0.1.1"
url = "https://github.com/cdevents/spec/tree/v0.1.1/spec.md"
Expand Down
7 changes: 5 additions & 2 deletions content/en/docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ Definition of specific events that are fundamental to pipeline execution and orc
{{< blocks/feature icon="fa-solid fa-code-branch" title="[Source Code Control Events](source-code-version-control/)" >}}
Handling Events relating to changes in version management of Source Code and related assets<br><br>
{{< /blocks/feature >}}
{{< blocks/feature icon="fa-solid fa-network-wired" title="[Continuous Integration Events](continuous-integration-pipeline-events/)" >}}
{{< blocks/feature icon="fa-solid fa-network-wired" title="[Continuous Integration Events](continuous-integration/)" >}}
Handling Events associated with Continuous Integration activities, typically involving build and test<br><br>
{{< /blocks/feature >}}
{{< blocks/feature icon="fa-solid fa-satellite-dish" title="[Continuous Deployment Events](continuous-deployment-pipeline-events/)" >}}
{{< blocks/feature icon="fa-solid fa-satellite-dish" title="[Continuous Deployment Events](continuous-deployment/)" >}}
Handling Events associated with Continuous Deployment activities<br><br>
{{< /blocks/feature >}}
{{< blocks/feature icon="fa-solid fa-gears" title="[Continuous Operations Events](continuous-operations/)" >}}
Handling Events associated with Continuous Operations activities<br><br>
{{< /blocks/feature >}}
{{< blocks/feature icon="fa-solid fa-arrow-right-arrow-left" title="[CloudEvents Binding and Transport](cloudevents-binding/)" >}}
Defining how CDEvents are mapped to CloudEvents for transportation and delivery<br><br>
{{< /blocks/feature >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# For example, to Redirect from /old_blog to /blog, set
# url to "/old_blog" and redirect_to to "/blog" below
type = "redirect"
url = "/docs/continuous-deployment-pipeline-events"
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-deployment-pipeline-events.md"
url = "/docs/continuous-deployment"
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-deployment.md"
redirect_enabled = true
private = true
+++
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# For example, to Redirect from /old_blog to /blog, set
# url to "/old_blog" and redirect_to to "/blog" below
type = "redirect"
url = "/docs/continuous-integration-pipeline-events"
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-integration-pipeline-events.md"
url = "/docs/continuous-integration"
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-integration.md"
redirect_enabled = true
private = true
+++
9 changes: 9 additions & 0 deletions content/en/redirect/continuous-operations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
# For example, to Redirect from /old_blog to /blog, set
# url to "/old_blog" and redirect_to to "/blog" below
type = "redirect"
url = "/docs/continuous-operations"
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-operations.md"
redirect_enabled = true
private = true
+++