Skip to content

Commit 6271548

Browse files
committed
Prepare for v0.2
Add the continuous operations tab and redirect. Update the version number to v0.2 Signed-off-by: Andrea Frittoli <[email protected]>
1 parent aacfda0 commit 6271548

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

config.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ archived_version = false
112112
# The version number for the version of the docs represented in this doc set.
113113
# Used in the "version-banner" partial to display a version number for the
114114
# current doc set.
115-
version = "v0.1.2"
115+
version = "v0.2.0"
116116

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

128+
[[params.versions]]
129+
version = "v0.1.2"
130+
url = "https://github.com/cdevents/spec/tree/v0.1.1/spec.md"
131+
128132
[[params.versions]]
129133
version = "v0.1.1"
130134
url = "https://github.com/cdevents/spec/tree/v0.1.1/spec.md"

content/en/docs/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,15 @@ Definition of specific events that are fundamental to pipeline execution and orc
3535
{{< blocks/feature icon="fa-solid fa-code-branch" title="[Source Code Control Events](source-code-version-control/)" >}}
3636
Handling Events relating to changes in version management of Source Code and related assets<br><br>
3737
{{< /blocks/feature >}}
38-
{{< blocks/feature icon="fa-solid fa-network-wired" title="[Continuous Integration Events](continuous-integration-pipeline-events/)" >}}
38+
{{< blocks/feature icon="fa-solid fa-network-wired" title="[Continuous Integration Events](continuous-integration/)" >}}
3939
Handling Events associated with Continuous Integration activities, typically involving build and test<br><br>
4040
{{< /blocks/feature >}}
41-
{{< blocks/feature icon="fa-solid fa-satellite-dish" title="[Continuous Deployment Events](continuous-deployment-pipeline-events/)" >}}
41+
{{< blocks/feature icon="fa-solid fa-satellite-dish" title="[Continuous Deployment Events](continuous-deployment/)" >}}
4242
Handling Events associated with Continuous Deployment activities<br><br>
4343
{{< /blocks/feature >}}
44+
{{< blocks/feature icon="fa-solid fa-gears" title="[Continuous Operations Events](continuous-operations/)" >}}
45+
Handling Events associated with Continuous Operations activities<br><br>
46+
{{< /blocks/feature >}}
4447
{{< blocks/feature icon="fa-solid fa-arrow-right-arrow-left" title="[CloudEvents Binding and Transport](cloudevents-binding/)" >}}
4548
Defining how CDEvents are mapped to CloudEvents for transportation and delivery<br><br>
4649
{{< /blocks/feature >}}

content/en/redirect/continuous-deployment-pipeline-events.md renamed to content/en/redirect/continuous-deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# For example, to Redirect from /old_blog to /blog, set
33
# url to "/old_blog" and redirect_to to "/blog" below
44
type = "redirect"
5-
url = "/docs/continuous-deployment-pipeline-events"
6-
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-deployment-pipeline-events.md"
5+
url = "/docs/continuous-deployment"
6+
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-deployment.md"
77
redirect_enabled = true
88
private = true
99
+++

content/en/redirect/continuous-integration-pipeline-events.md renamed to content/en/redirect/continuous-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# For example, to Redirect from /old_blog to /blog, set
33
# url to "/old_blog" and redirect_to to "/blog" below
44
type = "redirect"
5-
url = "/docs/continuous-integration-pipeline-events"
6-
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-integration-pipeline-events.md"
5+
url = "/docs/continuous-integration"
6+
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-integration.md"
77
redirect_enabled = true
88
private = true
99
+++
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
# For example, to Redirect from /old_blog to /blog, set
3+
# url to "/old_blog" and redirect_to to "/blog" below
4+
type = "redirect"
5+
url = "/docs/continuous-operations"
6+
redirect_to_versioned = "https://github.com/cdevents/spec/blob/VERSION/continuous-operations.md"
7+
redirect_enabled = true
8+
private = true
9+
+++

0 commit comments

Comments
 (0)