Skip to content

Commit e630c2a

Browse files
committed
Add safeframe auto release post (retroactive)
1 parent 794c30b commit e630c2a

File tree

3 files changed

+3637
-128
lines changed

3 files changed

+3637
-128
lines changed

_freeze/posts/safeframe_v1.0.0/index/execute-results/html.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

posts/safeframe_v1.0.0/index.qmd

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "safeframe v1.0.0"
3+
author:
4+
- name: "The Epiverse-TRACE development team"
5+
date: "2025-06-30"
6+
categories: [new-release]
7+
code-link: true
8+
---
9+
10+
<!-- markdownlint-disable-next-line -->
11+
We are very excited to announce the first stable release of [safeframe](https://epiverse-trace.github.io/safeframe) (version v1.0.0).
12+
13+
```{r}
14+
library(safeframe)
15+
```
16+
17+
# safeframe 1.0.0
18+
19+
* First release of **safeframe**.
20+
* Factors out the core functionality of **linelist** to make it more viable for alternative domains
21+
* General usage remains the same:
22+
23+
```r
24+
# Create a safeframe object
25+
x <- make_safeframe(cars, mph = "speed", distance = "dist")
26+
27+
# Validate the tagged data are of a specific type
28+
validate_safeframe(x,
29+
mph = 'numeric', # speed should be numeric
30+
# type() is a helper function of related classes
31+
distance = type('numeric') # dist should be numeric, integer
32+
)
33+
```
34+
35+
36+
## Acknowledgements
37+
38+
[&#x0040;avallecam](https://github.com/avallecam) [&#x0040;Bisaloo](https://github.com/Bisaloo) [&#x0040;chartgerink](https://github.com/chartgerink) [&#x0040;dependabot[bot]](https://github.com/dependabot[bot]) [&#x0040;joshwlambert](https://github.com/joshwlambert) [&#x0040;thibautjombart](https://github.com/thibautjombart) [&#x0040;TimTaylor](https://github.com/TimTaylor)

0 commit comments

Comments
 (0)