From 6014528c18ceb962e501346a4c1680cd137f0ad4 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Tue, 15 Mar 2022 09:09:54 +0100 Subject: [PATCH 1/3] docs: remove LICENSE mention --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bff6bca3..3457ae3e 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Pull requests are welcome! Please see our [contributing guidelines](.github/CONT ## About -Rhino is distributed under [LGPL-3.0 license]. See [`LICENSE`](LICENSE) for more information. +Rhino is distributed under [LGPL-3.0 license]. Developed with :heart: at [Appsilon]. From 7d077211e43381c763e2d355fd1928a7ee109d37 Mon Sep 17 00:00:00 2001 From: Kamil Zyla Date: Tue, 15 Mar 2022 12:27:14 +0100 Subject: [PATCH 2/3] fix: Add missing trailing slashes in URLs --- DESCRIPTION | 2 +- vignettes/rhino-project-structure.Rmd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2becf382..3126be73 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -10,7 +10,7 @@ Authors@R: person("Appsilon Sp. z o.o.", role = "cph", email = "opensource@appsilon.com") ) Description: A framework that supports creating and extending enterprise Shiny applications using best practices. -URL: https://appsilon.github.io/rhino, https://github.com/Appsilon/rhino +URL: https://appsilon.github.io/rhino/, https://github.com/Appsilon/rhino BugReports: https://github.com/Appsilon/rhino/issues License: LGPL-3 Encoding: UTF-8 diff --git a/vignettes/rhino-project-structure.Rmd b/vignettes/rhino-project-structure.Rmd index 1016aa27..71ad2781 100644 --- a/vignettes/rhino-project-structure.Rmd +++ b/vignettes/rhino-project-structure.Rmd @@ -77,7 +77,7 @@ R comes with the `library()` and `source()` functions, but its functionality is limited when it comes to dividing your code into modules and expressing their dependencies. -To address this, Rhino uses the [box](https://klmr.me/box) R package, +To address this, Rhino uses the [box](https://klmr.me/box/) R package, which allows you to modularize your code in a similar way to languages like Python and Java: ```r box::use( @@ -89,7 +89,7 @@ box::use( ) ``` -The best place to learn about box is its official [documentation](https://klmr.me/box). +The best place to learn about box is its official [documentation](https://klmr.me/box/). Some useful box features are also explained in the sections below. ## `__init__.R` files From 45bb8e25cc31a222e9afab0ee4e5d8dc7b5f08d0 Mon Sep 17 00:00:00 2001 From: Kamil Zyla Date: Tue, 15 Mar 2022 12:29:15 +0100 Subject: [PATCH 3/3] chore: Bump package version to 0.6.3 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3126be73..5e268ef2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: rhino Title: A Framework for Enterprise Shiny Applications -Version: 0.6.2 +Version: 0.6.3 Authors@R: c( person("Kamil", "Zyla", role = c("aut", "cre"), email = "kamil@appsilon.com"),