Skip to content

Commit

Permalink
bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daranzolin committed Jun 20, 2024
1 parent 6441798 commit c0895bf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: sqltargets
Type: Package
Title: 'Targets' Extension for 'SQL' Queries
Version: 0.0.1
Version: 0.1.0
Authors@R: c(
person("David", "Ranzolin", email = "daranzolin@gmail.com", role=c("aut", "cre", "cph"))
)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# sqltargets 0.1.1

* Added two additional options for the opening and closing delimiters.
* Upstream target name is now the file basename.
* Bug fix: readr::read_file correctly parses query file

# sqltargets 0.0.1

* Added a `NEWS.md` file to track changes to the package.
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ knitr::opts_chunk$set(

<!-- badges: end -->

sqltargets makes it easy to integrate SQL files within your [targets workflows.](https://github.com/ropensci/targets) The shorthand `tar_sql()` creates two targets: (1) the ‘upstream’ SQL file; and (2) the ‘downstream’ result of the query. Dependencies can be specified by calling `tar_load()` within SQL comments. Parameters can be specified using glue::glue_sql() bracket notation (‘{}’) (or configured using the `sqltargets.glue_sql_opening_delimiter` and `sqltargets.glue_sql_closing_delimiter` options (dev only)).
sqltargets makes it easy to integrate SQL files within your [targets workflows.](https://github.com/ropensci/targets) The shorthand `tar_sql()` creates two targets: (1) the ‘upstream’ SQL file; and (2) the ‘downstream’ result of the query. Dependencies can be specified by calling `tar_load()` within SQL comments. Parameters can be specified using glue::glue_sql() bracket notation (‘{}’) (or configured using the `sqltargets.glue_sql_opening_delimiter` and `sqltargets.glue_sql_closing_delimiter` options.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ the ‘downstream’ result of the query. Dependencies can be specified by
calling `tar_load()` within SQL comments. Parameters can be specified
using glue::glue_sql() bracket notation (‘{}’) (or configured using the
`sqltargets.glue_sql_opening_delimiter` and
`sqltargets.glue_sql_closing_delimiter` options (dev only)).
`sqltargets.glue_sql_closing_delimiter` options.

## Installation

Expand Down

0 comments on commit c0895bf

Please sign in to comment.