Re: [racket-users] deprecating a package (and redirecting users to new version)

2018-04-13 Thread Jay McCarthy
You can add the `deprecated` tag and change the description. Jay On Thu, Apr 12, 2018 at 5:13 PM, Stephen De Gabrielle wrote: > Hi, > > What is the best way to deprecate a package on pkgs.racket-lang.org ? > > Is there a way to redirect users to a new package (with a different name)? > > Kind re

[racket-users] announcement: racket-peg release 0.2

2018-04-13 Thread rain1
hello! I have created a PEG parser library for racket. It's basically regex turned up to 11. It lets you write parsers like this: (define-peg marked-palindrome (or "m" (and "1" marked-palindrome "1") (and "0" marked-palindrome "0"))) or like this: #lang peg expr <-