Skip to content

Commit

Permalink
Release 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwilcox committed Mar 10, 2021
1 parent 547a02d commit c1637f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EasyAvro [![Build Status](https://travis-ci.org/axiom-data-science/easyavro.svg?branch=master)](https://travis-ci.org/axiom-data-science/easyavro)

A python helper for producing and consuming `avro` schema'd Kafka topics. Simplicity and the ability to execute a function for each message consumed is the top priority.
A python helper for producing and consuming Kafka topics. Simplicity and the ability to execute a function for each message consumed is the top priority.


## Installation
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
4.0.0
6 changes: 3 additions & 3 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: easyavro
version: "3.0.0"
version: "4.0.0"

source:
path: ../
Expand All @@ -17,7 +17,7 @@ requirements:
run:
- python-confluent-kafka >=1.1.0,<2.0.0
- avro
- python-avro
- python-avro <=1.8.2
- requests
- msgpack-python

Expand All @@ -31,4 +31,4 @@ test:
about:
home: https://github.com/axiom-data-science/easyavro
license: MIT License
summary: "A python helper for producing and consuming avro schema'd Kafka topics"
summary: "A python helper for producing and consuming Kafka topics"
2 changes: 1 addition & 1 deletion easyavro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .consumer import EasyAvroConsumer, EasyConsumer
from .producer import EasyAvroProducer, EasyProducer, schema

__version__ = "3.0.0"
__version__ = "4.0.0"


__all__ = [
Expand Down

0 comments on commit c1637f8

Please sign in to comment.