From 9deae20dc33811a357c991f28bd3e3e13c7b1720 Mon Sep 17 00:00:00 2001 From: Theo Butler Date: Wed, 19 Apr 2017 16:50:59 -0400 Subject: [PATCH] use sylvanc/peg again --- bundle.json | 5 +++-- changelog.pony | 2 +- changelog_parser.pony | 2 +- main.pony | 2 +- tests/main.pony | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bundle.json b/bundle.json index 8d885bd..ff6d2a7 100644 --- a/bundle.json +++ b/bundle.json @@ -1,8 +1,9 @@ { "deps": [ { + "tag": "48f019a", "type": "github", - "repo": "theodus/peg" + "repo": "sylvanc/peg" } ] -} \ No newline at end of file +} diff --git a/changelog.pony b/changelog.pony index 20c06f6..38a7cef 100644 --- a/changelog.pony +++ b/changelog.pony @@ -1,4 +1,4 @@ -use ".deps/theodus/peg" +use ".deps/sylvanc/peg" class Changelog let unreleased: Release diff --git a/changelog_parser.pony b/changelog_parser.pony index c79ce36..8c89c74 100644 --- a/changelog_parser.pony +++ b/changelog_parser.pony @@ -1,4 +1,4 @@ -use ".deps/theodus/peg" +use ".deps/sylvanc/peg" primitive ChangelogParser fun apply(): Parser val => diff --git a/main.pony b/main.pony index cfc8a3d..45929cd 100644 --- a/main.pony +++ b/main.pony @@ -1,7 +1,7 @@ use "files" use "options" use "time" -use ".deps/theodus/peg" +use ".deps/sylvanc/peg" /* 1. have a part that can validate a changelog file diff --git a/tests/main.pony b/tests/main.pony index ef8d95b..68c4be6 100644 --- a/tests/main.pony +++ b/tests/main.pony @@ -1,7 +1,7 @@ use "files" use "ponytest" use ".." -use "../.deps/theodus/peg" +use "../.deps/sylvanc/peg" actor Main is TestList new create(env: Env) => PonyTest(env, this)