Skip to content

Commit 3c673f0

Browse files
authored
[skip vbump] upversion v0.7.0 (#270)
Closes #269
1 parent d630c10 commit 3c673f0

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: teal.code
33
Title: Code Storage and Execution Class for 'teal' Applications
4-
Version: 0.6.1.9006
4+
Version: 0.7.0
55
Date: 2025-08-12
66
Authors@R: c(
77
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre")),

NEWS.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
# teal.code 0.6.1.9006
1+
# teal.code 0.7.0
22

33
### Enhancements
44

5-
* Introduced `get_outputs` function to fetch objects which have been printed or plotted in the `qenv` code.
5+
* Introduced `get_outputs` function to fetch objects which have been printed or plotted in the `qenv` code.
66

77
### Bug fixes
88

9-
* Fix a problem detecting co-occurrences when expression has multiple lines.
9+
* Fix a problem detecting co-occurrences when expression has multiple lines (#249).
10+
* Fix a assignment bug `within` curly expression (#252).
1011

1112
### Miscellaneous
1213

1314
* `eval_code` uses `evaluate::evaluate` and stores returned outputs in the code's attribute.
1415
* Refactor `eval_code` method signature to allow for more flexibility when extending the `eval_code`/`within` functions.
15-
* `get_var(qenv, ...)` and `join(qenv, ...)` were hard deprecated.
16+
* `get_var(qenv, ...)` and `join(qenv, ...)` are hard deprecated.
1617

1718
# teal.code 0.6.1
1819

R/qenv-get_var.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#' @param i (`character(1)`) variable name.
1111
#'
1212
#' @export
13-
get_var <- function(...) lifecycle::deprecate_stop("0.6.0", "get_var()", "base::get()")
13+
get_var <- function(...) lifecycle::deprecate_stop("0.7.0", "get_var()", "base::get()")
1414

1515
#' @rdname get_var
1616
#' @export

R/qenv-join.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
#' @rdname join
1111
#'
1212
#' @export
13-
join <- function(...) lifecycle::deprecate_stop("0.6.0", "join()", "c()")
13+
join <- function(...) lifecycle::deprecate_stop("0.7.0", "join()", "c()")

0 commit comments

Comments
 (0)