Skip to content

Commit

Permalink
update 1.0.0, circle
Browse files Browse the repository at this point in the history
  • Loading branch information
evanbiederstedt committed Nov 16, 2021
1 parent cf40b27 commit 0b1acc8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
jobs:
build:
docker:
- image: rocker/verse:4.0.3
environment:
_R_CHECK_FORCE_SUGGESTS_: false
steps:
- checkout
- run:
name: Install package dependencies
command: |
Rscript \
-e 'if (!requireNamespace("devtools", quietly = TRUE)) install.packages("devtools")' \
-e 'devtools::install_deps(dependencies = NA)'
- run:
name: Build package
command: R CMD build .
- run:
name: Check package
command: R CMD check --no-manual *tar.gz
- store_test_results:
path: tmp/tests
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.0.0] - 2021-11-15
* `ggrastr` has gone through no major revisions in over a year. In order to avoid any confusion, this should be released with a major version.

## [0.2.3] - 2021-02-27
* Function `rasterise()` changed to work with multiple layers
* Function `rasterise()` now works with `geom_sf()`, i.e. should find any layers in a valid input list, and rasterize this.
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: ggrastr
Type: Package
Title: Rasterize Layers for 'ggplot2'
Version: 0.2.3
Version: 1.0.0
Authors@R: c(person("Viktor", "Petukhov", email = "[email protected]", role = c("aut", "cph")), person("Teun", "van den Brand", email = "[email protected]", role=c("aut")), person("Evan", "Biederstedt", email = "[email protected]", role=c("cre", "aut")))
Description: Rasterize only specific layers of a 'ggplot2' plot while simultaneously keeping all labels and text in vector format. This allows users to keep plots within the reasonable size limit without loosing vector properties of the scale-sensitive information.
License: MIT + file LICENSE
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.com/VPetukhov/ggrastr.svg?branch=master)](https://travis-ci.com/VPetukhov/ggrastr)
[![<VPetukhov>](https://circleci.com/gh/VPetukhov/ggrastr.svg?style=svg)](https://app.circleci.com/pipelines/github/VPetukhov/ggrastr)
[![CRAN status](https://www.r-pkg.org/badges/version/ggrastr)](https://cran.r-project.org/package=ggrastr)
[![CRAN downloads](https://cranlogs.r-pkg.org/badges/ggrastr)](https://cran.r-project.org/package=ggrastr)

Expand Down Expand Up @@ -59,6 +59,6 @@ If you find `ggrastr` useful for your publication, please cite:

```
Viktor Petukhov, Teun van den Brand and Evan Biederstedt (2021).
ggrastr: Raster Layers for 'ggplot2'. R package version 0.2.3.
ggrastr: Raster Layers for 'ggplot2'. R package version 1.0.0.
https://CRAN.R-project.org/package=ggrastr
```

0 comments on commit 0b1acc8

Please sign in to comment.