Skip to content

Commit bf25932

Browse files
committed
Wording adjustment
1 parent bfb00a6 commit bf25932

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

site/releases/breaking-changes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Open up the `.csv` for the year you want to update and create a new entry under
8686
| Date announced | ISO 8601 date of announcement | `2024-01-26` |
8787
| Release notes | Markdown format **HTML** link to the associated release notes enclosed by `""` | `"[Read](/releases/2024/2024-jan-26/highlights.html#standard-inputs-are-deprecated)"` |
8888
| Blog post | Markdown format link to the associated blog post enclosed by `""` | `"[Read](https://validmind.com/blog/)"` |
89-
| Date of removal | ISO 8601 date of removal | `2024-01-26` |
89+
| Date effective | ISO 8601 date of feature removal/deprecation | `2024-01-26` |
9090

9191
> [!NOTE]
9292
> You can refer to the **[example `.csv`](example.csv)** for formatting guidance.

site/releases/breaking-changes/breaking_changes.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ format_date <- function(date_column) {
2727
return(formatted_dates)
2828
}
2929

30-
# Apply date formatting to `Date announced` and `Date of removal` columns
30+
# Apply date formatting to `Date announced` and `Date effective` columns
3131
format_dates_in_data <- function(data) {
3232
if ("Date announced" %in% names(data)) {
3333
data[["Date announced"]] <- format_date(data[["Date announced"]])
3434
}
35-
if ("Date of removal" %in% names(data)) {
36-
data[["Date of removal"]] <- paste0(
37-
"<span style='color: #92130cff;'>", format_date(data[["Date of removal"]]), "</span>"
35+
if ("Date effective" %in% names(data)) {
36+
data[["Date effective"]] <- paste0(
37+
"<span style='color: #92130cff;'>", format_date(data[["Date effective"]]), "</span>"
3838
)
3939
}
4040
return(data)

site/releases/breaking-changes/example.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date of removal
1+
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date effective
22
ValidMind Library deprecation,{{< var validmind.developer >}},v00.0,Deprecation,YYYY-MM-DD,"[Read](url.html)",n/a,YYYY-MM-DD
33
ValidMind Platform breaking change,{{< var validmind.platform >}},v00.0,Breaking change,YYYY-MM-DD,"[Read](url.html)","[Read](url.html)",YYYY-MM-DD
44

site/releases/breaking-changes/history/2024.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date of removal
1+
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date effective
22
Standard inputs are deprecated,{{< var validmind.developer >}},v1.25.3,Deprecation,2024-01-26,"[Read](/releases/2024/2024-jan-26/highlights.html#standard-inputs-are-deprecated)",n/a,2024-01-26
33
Removed deprecated Python Library API methods,{{< var validmind.developer >}},v1.25.3,Breaking change,2024-01-26,"[Read](/releases/2024/2024-jan-26/highlights.html#removed-deprecated-methods)",n/a,2024-01-26
44

site/releases/breaking-changes/year.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date of removal
1+
Change,Product area,Version,Type,Date announced,Release notes,Blog post,Date effective
22
ValidMind Library deprecation,{{< var validmind.developer >}},v00.0,Deprecation,YYYY-MM-DD,"[Read](url.html)",n/a,YYYY-MM-DD
33
ValidMind Platform breaking change,{{< var validmind.platform >}},v00.0,Breaking change,YYYY-MM-DD,"[Read](url.html)","[Read](url.html)",YYYY-MM-DD
44

0 commit comments

Comments
 (0)