Skip to content

Commit

Permalink
chore: release 0.1.0-beta prep (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
philasmar authored Dec 8, 2023
1 parent 598dabd commit 0c6eb24
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 27 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Changelog
# Changelog

### Release 2023-12-08
* **AWS.Messaging (0.1.0-beta)**
* Initial _**beta**_ release.
* **AWS.Messaging.Lambda (0.1.0-beta)**
* Initial _**beta**_ release.
* **AWS.Messaging.Telemetry.OpenTelemetry (0.1.0-beta)**
* Initial _**beta**_ release.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# AWS Message Processing Framework for .NET
[![nuget](https://img.shields.io/nuget/v/AWS.Messaging.svg) ![downloads](https://img.shields.io/nuget/dt/AWS.Messaging.svg)](https://www.nuget.org/packages/AWS.Messaging/)
[![build status](https://img.shields.io/github/actions/workflow/status/awslabs/aws-dotnet-messaging/aws-ci.yml?branch=dev)](https://github.com/awslabs/aws-dotnet-messaging/actions/workflows/aws-ci.yml)

**Notice:** *This library is still in active development and is meant for early access and feedback purposes only. It should not be used in production environments, and any releases before 1.0.0 might include breaking changes.*

Expand All @@ -22,8 +24,6 @@ Features to be added:

# Getting started

**Notice:** *This library is still in active development and has not been published to NuGet.org yet.*

Add the `AWS.Messaging` NuGet package to your project:
```
dotnet add package AWS.Messaging --prerelease
Expand Down Expand Up @@ -62,15 +62,6 @@ builder.Services.AddAWSMessageBus(builder =>

// Register that you'll publish messages of type FoodItem to an existing EventBridge bus
builder.AddEventBridgePublisher<FoodItem>("arn:aws:events:us-west-2:012345678910:event-bus/default");

// Configure serialization options for how the message types are serialized and deserialized to JSON
builder.ConfigureSerializationOptions(options =>
{
options.SystemTextJsonOptions = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
};
});
});
```

Expand Down
11 changes: 0 additions & 11 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Getting Started

**Notice:** *This library is still in active development and has not been published to NuGet.org yet.*

Add the `AWS.Messaging` NuGet package to your project:
```
dotnet add package AWS.Messaging --prerelease
Expand Down Expand Up @@ -40,15 +38,6 @@ builder.Services.AddAWSMessageBus(builder =>

// Register that you'll publish messages of type FoodItem to an existing EventBridge bus
builder.AddEventBridgePublisher<FoodItem>("arn:aws:events:us-west-2:012345678910:event-bus/default");

// Configure serialization options for how the message types are serialized and deserialized to JSON
builder.ConfigureSerializationOptions(options =>
{
options.SystemTextJsonOptions = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
};
});
});
```

Expand Down
3 changes: 1 addition & 2 deletions src/AWS.Messaging.Lambda/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# AWS Lambda plugin for AWS Message Processing Framework for .NET
[![nuget](https://img.shields.io/nuget/v/AWS.Messaging.Lambda.svg) ![downloads](https://img.shields.io/nuget/dt/AWS.Messaging.Lambda.svg)](https://www.nuget.org/packages/AWS.Messaging.Lambda/)

**Notice:** *This library is still in early active development and is not ready for use beyond experimentation.*

Expand All @@ -8,8 +9,6 @@ In AWS Lambda, the service takes care of reading the messages from the SQS queue

## Example

**Notice:** *This library is still in active development and has not been published to NuGet.org yet.*

To get started, add the `AWS.Messaging.Lambda` NuGet package to your project:
```
dotnet add package AWS.Messaging.Lambda --prerelease
Expand Down
3 changes: 1 addition & 2 deletions src/AWS.Messaging.Telemetry.OpenTelemetry/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# OpenTelemetry plugin for AWS Message Processing Framework for .NET
[![nuget](https://img.shields.io/nuget/v/AWS.Messaging.Telemetry.OpenTelemetry.svg) ![downloads](https://img.shields.io/nuget/dt/AWS.Messaging.Telemetry.OpenTelemetry.svg)](https://www.nuget.org/packages/AWS.Messaging.Telemetry.OpenTelemetry/)

**Notice:** *This library is still in early active development and is not ready for use beyond experimentation.*

Expand All @@ -10,8 +11,6 @@ messages that are sent and received.

### 1. Install Packages

**Notice:** *This library is still in active development and has not been published to NuGet.org yet.*

Add a reference to [`AWS.Messaging.Telemetry.OpenTelemetry`](https://www.nuget.org/packages/AWS.Messaging.Telemetry.OpenTelemetry). In this example, we're going to configure OpenTelemetry on our `IServiceCollection`, so also add a reference to [`OpenTelemetry.Extensions.Hosting`](https://www.nuget.org/packages/OpenTelemetry.Extensions.Hosting). This is not required if starting and stopping tracing via `CreateTracerProviderBuilder`.

You may also add a reference to one or more [exporters](https://opentelemetry.io/docs/instrumentation/net/exporters/) to visualize your telemetry data.
Expand Down

0 comments on commit 0c6eb24

Please sign in to comment.