Skip to content

Commit 45cc06a

Browse files
authored
Rev to 1.0.0 (#37)
1 parent 4508f3b commit 45cc06a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.0 (2021-02-08)
4+
5+
* Remove "beta" designation
6+
37
## 0.6.0 (2021-01-21)
48

59
* Add validation against the ecs-logging [spec](https://github.com/elastic/ecs-logging/blob/master/spec/spec.json) ([#31](https://github.com/elastic/ecs-logging-python/pull/31))
@@ -10,7 +14,7 @@
1014

1115
- Updated supported ECS version to 1.6.0 ([#24](https://github.com/elastic/ecs-logging-python/pull/24))
1216
- Added support for `LogRecord.stack_info` ([#23](https://github.com/elastic/ecs-logging-python/pull/23))
13-
- Fixed normalizing of items in `list` that aren't of type
17+
- Fixed normalizing of items in `list` that aren't of type
1418
`dict` ([#22](https://github.com/elastic/ecs-logging-python/pull/22), contributed by [`@camerondavison`](https://github.com/camerondavison))
1519

1620
## 0.4 (2020-08-04)

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@
44
[![PyPI](https://img.shields.io/pypi/v/ecs-logging)](https://pypi.org/project/ecs-logging)
55
[![Versions Supported](https://img.shields.io/pypi/pyversions/ecs-logging)](https://pypi.org/project/ecs-logging)
66

7-
**Please note** that this is library is in a **beta** version and backwards-incompatible
8-
changes might be introduced in future releases. While we strive to comply to
9-
[semver](https://semver.org), we can not guarantee to avoid breaking changes in minor releases.
10-
117
Check out the [Elastic Common Schema (ECS) reference](https://www.elastic.co/guide/en/ecs/current/index.html)
128
for more information.
139

14-
The library currently implements ECS 1.6, after a 1.x version is released
15-
we will be following (ECS.major).(ECS.minor).(package minor) as our versioning scheme.
10+
The library currently implements ECS 1.6.
1611

1712
## Installation
1813

ecs_logging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from ._stdlib import StdlibFormatter
55
from ._structlog import StructlogFormatter
66

7-
__version__ = "0.6.0"
7+
__version__ = "1.0.0"
88
__all__ = [
99
"ECS_VERSION",
1010
"StdlibFormatter",

0 commit comments

Comments
 (0)