Skip to content

Commit 2d46e2f

Browse files
authored
Release S7 0.1.1 (#362)
* Polish news * Update all GitHub urls * Fix call. typo * Update CRAN comments * Increment version number to 0.1.1
1 parent 5b59cbc commit 2d46e2f

13 files changed

+41
-51
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: S7
22
Title:
33
An Object Oriented System Meant to Become a Successor to S3 and S4
4-
Version: 0.1.0.9000
4+
Version: 0.1.1
55
Authors@R: c(
66
person("Object-Oriented Programming Working Group", role = "cph"),
77
person("Davis", "Vaughan", role = "aut"),
@@ -25,7 +25,7 @@ Description: A new object oriented programming system designed to be a successor
2525
License: MIT + file LICENSE
2626
URL: https://github.com/rconsortium/S7/,
2727
https://rconsortium.github.io/S7/
28-
BugReports: https://github.com/rconsortium/OOP-WG/issues
28+
BugReports: https://github.com/rconsortium/S7/issues
2929
Depends:
3030
R (>= 3.5.0)
3131
Imports:

NEWS.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
# S7 (development version)
2-
3-
* `S7_inherits()` now accepts `class = NULL` to test if an object is any
4-
sort of S7 object (#347).
1+
# S7 0.1.1
52

63
* Classes get a more informative print method (#346).
74

5+
* Correctly register S3 methods for S7 objects with a package (#333).
6+
87
* External methods are now registered using an attribute of the S3 methods
98
table rather than an element of that environment. This prevents a warning
109
being generated during the "code/documentation mismatches" check in
1110
`R CMD check` (#342).
1211

12+
* `class_missing` and `class_any` can now be unioned with `|` (#337).
13+
1314
* `new_object()` no longer accepts `NULL` as `.parent`.
1415

1516
* `new_object()` now correctly runs the validator from abstract parent classes
1617
(#329).
1718

19+
* `new_object()` works better when custom property setters modify other
20+
properties.
21+
1822
* `new_property()` gains a `validator` argument that allows you to specify
1923
a per-property validator (#275).
2024

21-
* `class_missing` and `class_any` can now be unioned with `|` (#337).
22-
23-
* `new_object()` works better when custom property setters modify other
24-
properties.
25+
* `new_property()` clarifies that it's the user's responsibility to return
26+
the correct class; it is _not_ automatically validated.
2527

2628
* Properties with a custom setter are now validated _after_ the setter has
2729
run and are validated when the object is constructed or when you call
2830
`validate()`, not just when you modify them after construction.
2931

30-
* In `new_property()` clarify that it's the user's responsibility to return
31-
the correct class; it is _not_ automatically validated.
32-
33-
* Correctly register S3 methods for S7 objects with a package (#333).
32+
* `S7_inherits()` now accepts `class = NULL` to test if an object is any
33+
sort of S7 object (#347).
3434

3535
# S7 0.1.0
3636

R/property.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ prop_obj <- function(object, name) {
218218
if (isTRUE(check)) {
219219
error <- prop_validate(prop, value, object)
220220
if (!is.null(error)) {
221-
stop(error, call. = TRUE)
221+
stop(error, call. = FALSE)
222222
}
223223
}
224224

README.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ knitr::opts_chunk$set(
1717

1818
<!-- badges: start -->
1919

20-
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) [![R-CMD-check](https://github.com/RConsortium/OOP-WG/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RConsortium/OOP-WG/actions/workflows/R-CMD-check.yaml) [![Codecov test coverage](https://codecov.io/gh/RConsortium/OOP-WG/branch/main/graph/badge.svg)](https://app.codecov.io/gh/RConsortium/OOP-WG?branch=main)
20+
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental) [![R-CMD-check](https://github.com/RConsortium/S7/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RConsortium/S7/actions/workflows/R-CMD-check.yaml) [![Codecov test coverage](https://codecov.io/gh/RConsortium/S7/branch/main/graph/badge.svg)](https://app.codecov.io/gh/RConsortium/S7?branch=main)
2121

2222
<!-- badges: end -->
2323

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
[![Lifecycle:
99
experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
10-
[![R-CMD-check](https://github.com/RConsortium/OOP-WG/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RConsortium/OOP-WG/actions/workflows/R-CMD-check.yaml)
10+
[![R-CMD-check](https://github.com/RConsortium/S7/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RConsortium/S7/actions/workflows/R-CMD-check.yaml)
1111
[![Codecov test
12-
coverage](https://codecov.io/gh/RConsortium/OOP-WG/branch/main/graph/badge.svg)](https://app.codecov.io/gh/RConsortium/OOP-WG?branch=main)
12+
coverage](https://codecov.io/gh/RConsortium/S7/branch/main/graph/badge.svg)](https://app.codecov.io/gh/RConsortium/S7?branch=main)
1313

1414
<!-- badges: end -->
1515

cran-comments.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
This is a resubmission.
2-
3-
* There are no references to add to the description.
4-
* I have added the missing `\value{}` documentation.
5-
* I no longer create S4 classes in the global environment in tests.
6-
7-
---
8-
91
## R CMD check results
102

11-
0 errors | 0 warnings | 1 note
12-
13-
* This is a new release.
3+
0 errors | 0 warnings | 0 notes

tests/testthat/test-base-r.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test_that("base::`@` accesses S7 properties", {
5757

5858
test_that("dput(<S7_object>) works", {
5959
skip_if(getRversion() < "4.3")
60-
skip("dput() not fixed yet; https://github.com/RConsortium/OOP-WG/issues/272")
60+
skip("dput() not fixed yet; https://github.com/RConsortium/S7/issues/272")
6161

6262
expect_no_error(dput(new_class("Foo")()))
6363
expect_no_error(dput(new_class("Foo")))

vignettes/minutes/2021-05-18.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: "Minutes 2021-05-18"
88

99
### Process (ML)
1010

11-
- Active discussion in GitHub issues: <https://github.com/RConsortium/OOP-WG>
11+
- Active discussion in GitHub issues: <https://github.com/RConsortium/S7>
1212

1313
- Need a little process to finalise discussion. Proposal: original author reads discussion, summarises, and creates a pull request that closes the issue. Any participants in the discussion should be added as reviewers.
1414

vignettes/minutes/2022-02-12.Rmd

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ No semantic changes without discussion in issues
1616
- Numeric, atomic, and vector "types" as S7 unions.
1717
- Should we provide some wrappers to base unions and consider if we could get rid of string representation altogether? (e.g. `base_atomic`)
1818
- New `s3_class()` to define S3 classes.
19-
- <https://github.com/RConsortium/OOP-WG/pull/148> makes it possible for S7 class to extend an S3 class
19+
- <https://github.com/RConsortium/S7/pull/148> makes it possible for S7 class to extend an S3 class
2020
- Should we export the S3 class definitions for common base S3 classes? And then provide with `base_factor` etc.
2121
- S4 unions converted to S7 unions
2222
- Method registration
@@ -53,9 +53,9 @@ No semantic changes without discussion in issues
5353

5454
- Next time we meet, we should discuss other ways to advertise
5555
- Ok to rename default branch from master to main? \~5 minutes work and unlikely to cause any problems.
56-
- Ok to eliminate `prop_safely()`? <https://github.com/RConsortium/OOP-WG/issues/156>
57-
- Convention for displaying class names: <https://github.com/RConsortium/OOP-WG/issues/133> / <https://github.com/RConsortium/OOP-WG/pull/161>
56+
- Ok to eliminate `prop_safely()`? <https://github.com/RConsortium/S7/issues/156>
57+
- Convention for displaying class names: <https://github.com/RConsortium/S7/issues/133> / <https://github.com/RConsortium/S7/pull/161>
5858
- Only show for S3/S4
59-
- Name of sentinel for missing/any dispatch: <https://github.com/RConsortium/OOP-WG/issues/67>
59+
- Name of sentinel for missing/any dispatch: <https://github.com/RConsortium/S7/issues/67>
6060
- `_arg` looks good
61-
- Coercion: <https://github.com/RConsortium/OOP-WG/issues/136>
61+
- Coercion: <https://github.com/RConsortium/S7/issues/136>

vignettes/minutes/2022-03-08.Rmd

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: "Minutes 2022-03-08"
55
## Changes
66

77
- Website updates (<https://rconsortium.github.io/OOP-WG/>): refreshed readme, minutes as articles.
8-
Working on documentation overhaul in <https://github.com/RConsortium/OOP-WG/pull/187>.
8+
Working on documentation overhaul in <https://github.com/RConsortium/S7/pull/187>.
99

1010
- `new_generic()` now requires `dispatch_args`.
1111
This means that `new_generic()` will typically be called without names:
@@ -21,17 +21,17 @@ title: "Minutes 2022-03-08"
2121

2222
- `new_class("foo", properties = list(x = integer, y = double))@constructor`
2323

24-
- <https://github.com/RConsortium/OOP-WG/blob/main/R/class.R#L209-L212>
24+
- <https://github.com/RConsortium/S7/blob/main/R/class.R#L209-L212>
2525

2626
- See other minor changes in\
27-
<https://github.com/RConsortium/OOP-WG/blob/main/NEWS.md#feb-2022>
27+
<https://github.com/RConsortium/S7/blob/main/NEWS.md#feb-2022>
2828

2929
## Discussion
3030

31-
- Rename `method_call()`? <https://github.com/RConsortium/OOP-WG/issues/200> --- `S7_dispatch()` sounds good.
32-
- Abstract classes? <https://github.com/RConsortium/OOP-WG/issues/199>. Easy to implement but is it worth it?
33-
- What should we call the S7 equivalent of inherits? <https://github.com/RConsortium/OOP-WG/issues/193> --- call it `S7_inherits()` for now; will eventually just be part of inherits. Propose generic extension mechanism for inherits.
34-
- Explicit S4 registration: <https://github.com/RConsortium/OOP-WG/pull/182>
35-
- New names for base types? <https://github.com/RConsortium/OOP-WG/issues/170> --- `class_` sounds good.
36-
- Convert and super: <https://github.com/RConsortium/OOP-WG/pull/181>
37-
- Should we offer encapsulated OO? <https://github.com/RConsortium/OOP-WG/issues/202>
31+
- Rename `method_call()`? <https://github.com/RConsortium/S7/issues/200> --- `S7_dispatch()` sounds good.
32+
- Abstract classes? <https://github.com/RConsortium/S7/issues/199>. Easy to implement but is it worth it?
33+
- What should we call the S7 equivalent of inherits? <https://github.com/RConsortium/S7/issues/193> --- call it `S7_inherits()` for now; will eventually just be part of inherits. Propose generic extension mechanism for inherits.
34+
- Explicit S4 registration: <https://github.com/RConsortium/S7/pull/182>
35+
- New names for base types? <https://github.com/RConsortium/S7/issues/170> --- `class_` sounds good.
36+
- Convert and super: <https://github.com/RConsortium/S7/pull/181>
37+
- Should we offer encapsulated OO? <https://github.com/RConsortium/S7/issues/202>

vignettes/minutes/2022-08-01.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ title: "Minutes 2022-08-08"
1414

1515
* R-core meeting in Vienna (Sept). ML to present S7 work and hopefully get some buy-in.
1616

17-
* Base patches? (https://github.com/RConsortium/OOP-WG/issues/222)
17+
* Base patches? (https://github.com/RConsortium/S7/issues/222)
1818

1919
* Get to CRAN to get more exposure and figure out how to get into base R itself.

vignettes/packages.Rmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ knitr::opts_chunk$set(
1616

1717
This vignette outlines the most important things you need to know about using S7 in a package.
1818
S7 is new, so few people have used it in a package yet; this means that this vignette is likely incomplete, and we'd love your help to make it better.
19-
Please [let us know](https://github.com/RConsortium/OOP-WG/issues/new) if you have questions that this vignette doesn't answer.
19+
Please [let us know](https://github.com/RConsortium/S7/issues/new) if you have questions that this vignette doesn't answer.
2020

2121
```{r setup}
2222
library(S7)
@@ -46,11 +46,11 @@ If you export a class, you must also set the `package` argument, ensuring that c
4646
You should document generics like regular functions (since they are!).
4747
If you expect others to create their own methods for your generic, you may want to include an section describing the the properties that you expect all methods to have.
4848
We plan to provide a an easy way to all methods for a generic, but have not yet implemented it.
49-
You can track progress at <https://github.com/RConsortium/OOP-WG/issues/167>.
49+
You can track progress at <https://github.com/RConsortium/S7/issues/167>.
5050

5151
We don't currently have any recommendations on documenting methods.
5252
There's no need to document them in order to pass `R CMD check`, but obviously there are cases where it's nice to provide additional details for a method, particularly if it takes extra arguments compared to the generic.
53-
We're tracking that issue at <https://github.com/RConsortium/OOP-WG/issues/315>.
53+
We're tracking that issue at <https://github.com/RConsortium/S7/issues/315>.
5454

5555
## Backward compatibility
5656

vignettes/spec/requirements.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >
55
---
66

77

8-
This page is for brainstorming on the technical requirements for solving our [problem](https://github.com/RConsortium/OOP-WG/wiki/Problem-Statement).
8+
This page is for brainstorming on the technical requirements for solving our [problem](https://github.com/RConsortium/S7/wiki/Problem-Statement).
99
Once we align on the requirements, we can start the design process.
1010

1111
## List of requirements

0 commit comments

Comments
 (0)