From a68825ef4521c5119ba528c579f741c094525cbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Biecek?= Date: Wed, 2 Jan 2019 09:49:02 +0100 Subject: [PATCH] fix for #332 --- DESCRIPTION | 4 +--- NEWS.md | 4 ++++ R/zzz.R | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 42b729f..0331cc0 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -45,9 +45,7 @@ Suggests: ggplot2, devtools, knitr -Enhances: - archivist.github URL: https://pbiecek.github.io/archivist/ BugReports: https://github.com/pbiecek/archivist/issues -RoxygenNote: 6.0.1.9000 +RoxygenNote: 6.1.1 VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 8934b06..d709800 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +archivist 2.3.2 +---------------------------------------------------------------- +* The `https://raw.githubusercontent.com` serwis is closed, this is why we need to update hooks to `https://raw.githack.com` ([#332](https://github.com/pbiecek/archivist/issues/332)). + archivist 2.3.1 ---------------------------------------------------------------- * Internal changes in the `cache()` function due to ([#327](https://github.com/pbiecek/archivist/issues/327)). Effect of the bytecompiler needs further research. diff --git a/R/zzz.R b/R/zzz.R index a58a335..abe6fff 100644 --- a/R/zzz.R +++ b/R/zzz.R @@ -29,7 +29,7 @@ setDefaultArchivistEnv <- function() { .onLoad <- function(...) { setDefaultArchivistEnv() assign( x = "sqlite", value = dbDriver( "SQLite" ), envir = .ArchivistEnv ) - assign( x = ".GithubURL", value = "https://raw.githubusercontent.com", envir = .ArchivistEnv ) + assign( x = ".GithubURL", value = "https://raw.githack.com", envir = .ArchivistEnv ) } onUnload <- function( libpath ){