Skip to content

Commit 32074dc

Browse files
committed
Merge branch 'develop'
2 parents 980207e + 3e1940b commit 32074dc

File tree

16 files changed

+33
-18
lines changed

16 files changed

+33
-18
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ message: If you use this software, please cite our article in the Journal of Ope
33
doi: 10.5281/zenodo.10818640
44
repository-code: 'https://github.com/NERC-CEH/RMAVIS'
55
license: LGPL-3.0
6-
version: v1.1.2
6+
version: v1.1.3
77
type: software
88
authors:
99
- given-names: Zeke

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RMAVIS
22
Title: Assign Vegetation Survey Data to GB NVC Communities
3-
Version: 1.1.2
3+
Version: 1.1.3
44
Date: 2025-07-28
55
Authors@R: c(person(given = "Zeke",
66
family = "Marshall",

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# RMAVIS 1.1.3 (29-07-2025)
2+
* Modifications: NA
3+
* Fixes:
4+
- Ensuring order of execution for NVC assignment is correct, i.e. floristic tables must be composed and not NULL before group similarity calculations.
5+
* New Features: NA
6+
17
# RMAVIS 1.1.2 (28-07-2025)
28
* Modifications: NA
39
* Fixes:

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ knitr::opts_chunk$set(
1414
# RMAVIS
1515

1616
<!-- badges: start -->
17-
[![Generic badge](https://img.shields.io/badge/Version-1.1.2-green.svg)]()
17+
[![Generic badge](https://img.shields.io/badge/Version-1.1.3-green.svg)]()
1818
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
1919
[![DOI](https://zenodo.org/badge/722095560.svg)](https://zenodo.org/badge/latestdoi/722095560)
2020
[![status](https://joss.theoj.org/papers/460c6f934a108fcf5a16d0f2ab77492e/status.svg)](https://joss.theoj.org/papers/460c6f934a108fcf5a16d0f2ab77492e)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- badges: start -->
55

66
[![Generic
7-
badge](https://img.shields.io/badge/Version-1.1.2-green.svg)]()
7+
badge](https://img.shields.io/badge/Version-1.1.3-green.svg)]()
88
[![Project Status: Active – The project has reached a stable, usable
99
state and is being actively
1010
developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

inst/app/NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# RMAVIS 1.1.3 (29-07-2025)
2+
* Modifications: NA
3+
* Fixes:
4+
- Ensuring order of execution for NVC assignment is correct, i.e. floristic tables must be composed and not NULL before group similarity calculations.
5+
* New Features: NA
6+
17
# RMAVIS 1.1.2 (28-07-2025)
28
* Modifications: NA
39
* Fixes:

inst/app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- badges: start -->
55

66
[![Generic
7-
badge](https://img.shields.io/badge/Version-1.1.2-green.svg)]()
7+
badge](https://img.shields.io/badge/Version-1.1.3-green.svg)]()
88
[![Project Status: Active – The project has reached a stable, usable
99
state and is being actively
1010
developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

inst/app/docs/documentation.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "RMAVIS - Documentation"
3-
subtitle: "v1.1.2"
3+
subtitle: "v1.1.3"
44
# output:
55
# bookdown::word_document2:
66
# always_allow_html: true

inst/app/modules/data_entry/deSidebar_server.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ deSidebar <- function(input, output, session,
157157
filename = function() {
158158

159159
paste0("RMAVIS.SurveyData.",
160-
"v1-1-2.",
160+
"v1-1-3.",
161161
format(Sys.time(), "%y-%m-%d.%H-%M-%S"),
162162
".csv",
163163
sep="")
@@ -180,7 +180,7 @@ deSidebar <- function(input, output, session,
180180
filename = function() {
181181

182182
paste0("RMAVIS.AcceptedTaxa.",
183-
"v1-1-2",
183+
"v1-1-3",
184184
".csv",
185185
sep="")
186186

@@ -199,7 +199,7 @@ deSidebar <- function(input, output, session,
199199
filename = function() {
200200

201201
paste0("RMAVIS.TaxonomicBackbone.",
202-
"v1-1-2",
202+
"v1-1-3",
203203
".csv",
204204
sep="")
205205

@@ -218,7 +218,7 @@ deSidebar <- function(input, output, session,
218218
filename = function() {
219219

220220
paste0("RMAVIS.TaxonLookup.",
221-
"v1-1-2",
221+
"v1-1-3",
222222
".csv",
223223
sep="")
224224

inst/app/modules/news_ui.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ newsUI <- function(id) {
1414

1515
shiny::markdown(
1616
'
17-
The latest versions of RMAVIS (v1.1.2, v1.1.1, and v1.1.0) contain a number of breaking changes relative to the v1.0.1 release.
17+
The latest versions of RMAVIS (v1.1.3, v1.1.2, v1.1.1, and v1.1.0) contain a number of breaking changes relative to the v1.0.1 release.
1818
1919
First, is a major update to the taxonomy, which is now aligned with version 20250703a of the UKSI, available <a href="https://data.nhm.ac.uk/dataset/uk-species-inventory-simplified-copy/" target="_blank">here</a>.
2020
A csv of the taxonomic backbone can also be downloaded from the Data Entry section of RMAVIS.

0 commit comments

Comments
 (0)