From c91d1e7c8e2f84c55da7af75cbab19026d014247 Mon Sep 17 00:00:00 2001 From: Sanskar Jethi Date: Sun, 13 Feb 2022 16:46:01 +0000 Subject: [PATCH] Release v0.12.1 --- CHANGELOG.md | 16 +++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 7 +++++-- pyproject.toml | 2 +- 5 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0ccf7dac..ed0cbe325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,21 @@ ## [Unreleased](https://github.com/sansyrox/robyn/tree/HEAD) -[Full Changelog](https://github.com/sansyrox/robyn/compare/v0.11.1...HEAD) +[Full Changelog](https://github.com/sansyrox/robyn/compare/v0.12.0...HEAD) + +**Closed issues:** + +- \[BUG\] Default URL cannot be assigned [\#159](https://github.com/sansyrox/robyn/issues/159) +- Upcoming release\(s\) [\#141](https://github.com/sansyrox/robyn/issues/141) + +**Merged pull requests:** + +- Fix: default url param in app.start [\#160](https://github.com/sansyrox/robyn/pull/160) ([sansyrox](https://github.com/sansyrox)) +- Remove arc\(ing\) [\#156](https://github.com/sansyrox/robyn/pull/156) ([sansyrox](https://github.com/sansyrox)) + +## [v0.12.0](https://github.com/sansyrox/robyn/tree/v0.12.0) (2022-01-21) + +[Full Changelog](https://github.com/sansyrox/robyn/compare/v0.11.1...v0.12.0) **Closed issues:** diff --git a/Cargo.lock b/Cargo.lock index c8fa929b5..0199f7c11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1238,7 +1238,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "robyn" -version = "0.12.0" +version = "0.12.1" dependencies = [ "actix", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 47da19ab8..234b69d12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "robyn" -version = "0.12.0" +version = "0.12.1" authors = ["Sanskar Jethi "] edition = "2018" description = "A web server that is fast!" diff --git a/README.md b/README.md index 33fd2dc05..aa7834f77 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,15 @@ # Robyn [![sansyrox](https://circleci.com/gh/sansyrox/robyn.svg?style=svg)](https://app.circleci.com/pipelines/github/sansyrox/robyn) +[![Twitter](https://badgen.net/badge/icon/twitter?icon=twitter&label)](https://twitter.com/robyn_oss) [![Gitter](https://badges.gitter.im/robyn_/community.svg)](https://gitter.im/robyn_/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Downloads](https://static.pepy.tech/personalized-badge/robyn?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/robyn) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![GitHub tag](https://img.shields.io/github/tag/sansyrox/robyn?include_prereleases=&sort=semver&color=black)](https://github.com/sansyrox/robyn/releases/) +[![License](https://img.shields.io/badge/License-BSD_2.0-black)](#license) -API Docs: [Docs](https://sansyrox.github.io/robyn/#/) +[![view - Documentation](https://img.shields.io/badge/view-Documentation-blue?style=for-the-badge)](https://sansyrox.github.io/robyn/#/) Robyn is an async Python backend server with a runtime written in Rust, btw. @@ -61,7 +64,7 @@ If you're feeling curious. You can take a look at a more detailed architecture [ ## ⚙️ To Develop Locally -1. Add more routes in the `integration_tests/base_routes.py` file(if you like). It only supports only get requests at the moment +1. Add more routes in the `integration_tests/base_routes.py` file(if you like). 2. Run `maturin develop` diff --git a/pyproject.toml b/pyproject.toml index fa2f30685..ea6e2137d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ name = "robyn" -version = "0.12.0" +version = "0.12.1" description = "A web server that is fast!" authors = ["Sanskar Jethi "]