From 405fde1aeab072848e6cfff7143162913c518870 Mon Sep 17 00:00:00 2001 From: Lukas Niemeier Date: Sun, 7 Apr 2019 01:55:11 +0200 Subject: [PATCH] Re-Release Version 1.1.1 --- CHANGELOG.md | 2 +- README.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b76f99a..e17391d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.1.0 +## 1.1.1 This version switches from .NET Framework to .NET Core. diff --git a/README.md b/README.md index 9aad5f0..d12225f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Retina +[![Build Status](https://travis-ci.org/m-ender/retina.svg?branch=master)](https://travis-ci.org/m-ender/retina) +[![Release](https://img.shields.io/github/release/m-ender/retina.svg)](https://github.com/m-ender/retina/releases) + Retina is a regex-based recreational programming language. Every program works by reading a (finite) string from standard input, transforming it via a series of regex operations (e.g. counting matches, filtering lines, and most of all substituting). Retina was built on top of [.NET's regex engine](https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions), but provides its own, more powerful substitution syntax. Retina was mainly developed for [code golf](https://en.wikipedia.org/wiki/Code_golf) which may explain its very terse configuration syntax and some weird design decisions.