From f6342026f931e8992856dde140b83293b1cd7407 Mon Sep 17 00:00:00 2001 From: wdhowe Date: Mon, 23 Nov 2020 18:54:38 -0600 Subject: [PATCH] Added badges and updated version to 0.1.0. --- README.md | 16 +++++++++++++++- project.clj | 4 ++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0184775..ce85803 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # lemme-know-bot +[![Build Status][gh-actions-badge]][gh-actions] [![Clojars Project][clojars-badge]][clojars] [![Clojure Docs][cljdoc-badge]][cljdoc-link] [![Clojure version][clojure-v]](project.clj) + A Telegram Bot that mentions you when your specified text in a chat matches. ## Installation @@ -9,7 +11,7 @@ Using the lemme-know-bot code in your own project. Leiningen/Boot Project file ```clojure -[lemme-know-bot "0.1.0-SNAPSHOT"] +[lemme-know-bot "0.1.0"] ``` ### Include the Library @@ -75,3 +77,15 @@ Public License, v. 2.0 are satisfied: GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version, with the GNU Classpath Exception which is available at . + +---- + + + +[gh-actions-badge]: https://github.com/wdhowe/lemme-know-bot/workflows/ci%2Fcd/badge.svg +[gh-actions]: https://github.com/wdhowe/lemme-know-bot/actions +[cljdoc-badge]: https://cljdoc.org/badge/lemme-know-bot/lemme-know-bot +[cljdoc-link]: https://cljdoc.org/d/lemme-know-bot/lemme-know-bot/CURRENT +[clojure-v]: https://img.shields.io/badge/clojure-1.10.0-blue.svg +[clojars]: https://clojars.org/lemme-know-bot +[clojars-badge]: https://img.shields.io/clojars/v/lemme-know-bot.svg diff --git a/project.clj b/project.clj index 06cef8c..50580d1 100644 --- a/project.clj +++ b/project.clj @@ -1,5 +1,5 @@ -(defproject lemme-know-bot "0.1.0-SNAPSHOT" - :description "A Telegram Bot that sends you a message when the specified text in a chat matches." +(defproject lemme-know-bot "0.1.0" + :description "A Telegram Bot that mentions you when the specified text in a chat matches." :url "https://github.com/wdhowe/lemme-know-bot" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"}