Skip to content

Commit

Permalink
v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhersz committed Oct 20, 2023
1 parent 6b15c84 commit aa21adb
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 28 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: gtfsio
Title: Read and Write General Transit Feed Specification (GTFS) Files
Version: 1.1.0.9000
Version: 1.1.1
Authors@R:
c(person(given = "Daniel",
family = "Herszenhut",
Expand Down
6 changes: 2 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# gtfsio (development version)
# gtfsio 1.1.1

## Bug fixes

## New features

## Notes
- Now prevents `export_gtfs()` to save large round numbers in scientific notation. This was not exactly a bug, as the specification does not forbid it, but the behavior could interfere with the workflow of people using other applications (as shown in [{gtfstools} #73](https://github.com/ipeaGIT/gtfstools/issues/73)). Also, improves the readability of the tables.

# gtfsio 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ For a more complete demonstration please read the [introductory vignette](https:

- [`{tidytransit}`](https://github.com/r-transit/tidytransit)
- [`{gtfs2gps}`](https://github.com/ipeaGIT/gtfs2gps)
- [`{gtfsrouter}`](https://github.com/ATFutures/gtfs-router)
- [`{gtfsrouter}`](https://github.com/UrbanAnalyst/gtfsrouter)
- [`{gtfstools}`](https://github.com/ipeaGIT/gtfstools)
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ path <- system.file("extdata/ggl_gtfs.zip", package = "gtfsio")
gtfs <- import_gtfs(path)

names(gtfs)
#> [1] "agency" "attributions" "calendar"
#> [4] "calendar_dates" "fare_attributes" "fare_rules"
#> [7] "feed_info" "frequencies" "levels"
#> [10] "pathways" "routes" "shapes"
#> [13] "stop_times" "stops" "transfers"
#> [16] "translations" "trips"
#> [1] "calendar_dates" "fare_attributes" "fare_rules"
#> [4] "feed_info" "frequencies" "levels"
#> [7] "pathways" "routes" "shapes"
#> [10] "stop_times" "stops" "transfers"
#> [13] "translations" "trips" "agency"
#> [16] "attributions" "calendar"
```

`import_gtfs()` returns a `gtfs` object. The `gtfs` class might be
Expand All @@ -78,15 +78,15 @@ tmpf <- tempfile(fileext = ".zip")
export_gtfs(gtfs, tmpf)

zip::zip_list(tmpf)$filename
#> [1] "agency.txt" "attributions.txt"
#> [3] "calendar.txt" "calendar_dates.txt"
#> [5] "fare_attributes.txt" "fare_rules.txt"
#> [7] "feed_info.txt" "frequencies.txt"
#> [9] "levels.txt" "pathways.txt"
#> [11] "routes.txt" "shapes.txt"
#> [13] "stop_times.txt" "stops.txt"
#> [15] "transfers.txt" "translations.txt"
#> [17] "trips.txt"
#> [1] "calendar_dates.txt" "fare_attributes.txt"
#> [3] "fare_rules.txt" "feed_info.txt"
#> [5] "frequencies.txt" "levels.txt"
#> [7] "pathways.txt" "routes.txt"
#> [9] "shapes.txt" "stop_times.txt"
#> [11] "stops.txt" "transfers.txt"
#> [13] "translations.txt" "trips.txt"
#> [15] "agency.txt" "attributions.txt"
#> [17] "calendar.txt"
```

For a more complete demonstration please read the [introductory
Expand All @@ -96,5 +96,5 @@ vignette](https://r-transit.github.io/gtfsio/articles/gtfsio.html).

- [`{tidytransit}`](https://github.com/r-transit/tidytransit)
- [`{gtfs2gps}`](https://github.com/ipeaGIT/gtfs2gps)
- [`{gtfsrouter}`](https://github.com/ATFutures/gtfs-router)
- [`{gtfsrouter}`](https://github.com/UrbanAnalyst/gtfsrouter)
- [`{gtfstools}`](https://github.com/ipeaGIT/gtfstools)
6 changes: 3 additions & 3 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"codeRepository": "https://github.com/r-transit/gtfsio",
"issueTracker": "https://github.com/r-transit/gtfsio/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "1.1.0.9000",
"version": "1.1.1",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.2.2 Patched (2022-11-10 r83330)",
"runtimePlatform": "R version 4.3.1 (2023-06-16)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
Expand Down Expand Up @@ -133,7 +133,7 @@
},
"SystemRequirements": null
},
"fileSize": "387.286KB",
"fileSize": "387.998KB",
"releaseNotes": "https://github.com/r-transit/gtfsio/blob/master/NEWS.md",
"readme": "https://github.com/r-transit/gtfsio/blob/master/README.md",
"contIntegration": ["https://github.com/r-transit/gtfsio/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/r-transit/gtfsio?branch=master"],
Expand Down
6 changes: 3 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Test environments

- Local Ubuntu 20.04 installation (R 4.2.2)
- Local Ubuntu 20.04 installation (R 4.3.1)
- GitHub Actions:
- Windows (release, oldrel)
- MacOS (release, oldrel)
Expand All @@ -25,9 +25,9 @@ Check status summary:
Check results summary:
gtfsio ... OK
rdepends_gtfstools ... WARNING
* checking CRAN incoming feasibility ... WARNING
* checking CRAN incoming feasibility ... [7s/46s] WARNING
rdepends_tidytransit ... WARNING
* checking CRAN incoming feasibility ... WARNING
* checking CRAN incoming feasibility ... [6s/33s] WARNING
* checking installed package size ... NOTE

None of the notes and warnings in {gtfstools} and {tidytransit} checks are related to {gtfsio}. The revdep checks were run with tools::check_packages_in_dir(check_args = "--as-cran"), thus raising an "insufficient package version" warning in the dependencies check.
Expand Down

0 comments on commit aa21adb

Please sign in to comment.