Skip to content

Commit

Permalink
Update release version and READMEs (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz authored Dec 5, 2023
1 parent 7c07aa7 commit b64dd6d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 29 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>0.1.0-beta2</Version>
<Version>1.0.0</Version>
<!--
.NET does not allow the above version format for AssemblyVersion, and this
is the version used in gRPC headers. The format is
Expand All @@ -32,7 +32,7 @@
and 0.2.0 then is 0.2.0.5. But if there is no prerelease version, just
leave revision off.
-->
<AssemblyVersion>0.1.0.8</AssemblyVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ Extensions:
* [Temporalio.Extensions.OpenTelemetry](https://github.com/temporalio/sdk-dotnet/tree/main/src/Temporalio.Extensions.OpenTelemetry) -
OpenTelemetry tracing support

⚠️ UNDER ACTIVE DEVELOPMENT

This SDK is under active development and has not released a stable version yet. APIs may change in incompatible ways
until the SDK is marked stable.

All features are present in this SDK, but some future features like static analyzers and source generation are not yet
present.

---

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
Expand Down Expand Up @@ -94,7 +86,7 @@ present.
Add the `Temporalio` package from [NuGet](https://www.nuget.org/packages/Temporalio). For example, using the `dotnet`
CLI:

dotnet add package Temporalio --prerelease
dotnet add package Temporalio

If you are using .NET Framework or a non-standard target platform, see the
[Built-in Native Shared Library](#built-in-native-shared-library) section later for additional information.
Expand Down
7 changes: 1 addition & 6 deletions src/Temporalio.Extensions.DiagnosticSource/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,12 @@
This extension adds an implementation of `Temporalio.Runtime.ICustomMetricMeter` for `System.Diagnostics.Metrics.Meter`
so internal SDK metrics can be forwarded as regular .NET metrics.

⚠️ UNDER ACTIVE DEVELOPMENT

This SDK is under active development and has not released a stable version yet. APIs may change in incompatible ways
until the SDK is marked stable.

## Quick Start

Add the `Temporalio.Extensions.DiagnosticSource` package from
[NuGet](https://www.nuget.org/packages/Temporalio.Extensions.DiagnosticSource). For example, using the `dotnet` CLI:

dotnet add package Temporalio.Extensions.DiagnosticSource --prerelease
dotnet add package Temporalio.Extensions.DiagnosticSource

Now a `Temporalio.Runtime.TemporalRuntime` can be created with a .NET meter and a client can be created from that:

Expand Down
7 changes: 1 addition & 6 deletions src/Temporalio.Extensions.Hosting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@ This extension adds support for worker
[Dependency Injection](https://learn.microsoft.com/en-us/dotnet/core/extensions/dependency-injection) to the
[Temporal .NET SDK](https://github.com/temporalio/sdk-dotnet).

⚠️ UNDER ACTIVE DEVELOPMENT

This SDK is under active development and has not released a stable version yet. APIs may change in incompatible ways
until the SDK is marked stable.

## Quick Start

Add the `Temporalio.Extensions.Hosting` package from
[NuGet](https://www.nuget.org/packages/Temporalio.Extensions.Hosting). For example, using the `dotnet` CLI:

dotnet add package Temporalio.Extensions.Hosting --prerelease
dotnet add package Temporalio.Extensions.Hosting

To create a worker service, you can do the following:

Expand Down
7 changes: 1 addition & 6 deletions src/Temporalio.Extensions.OpenTelemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,12 @@ Although generic .NET `System.Diagnostic` activities are used, this extension is
propagation capabilities in use for serializing spans across processes/SDKs. For users needing generic tracing or other
similar features, this code can be used as a guide for how to write an interceptor.

⚠️ UNDER ACTIVE DEVELOPMENT

This SDK is under active development and has not released a stable version yet. APIs may change in incompatible ways
until the SDK is marked stable.

## Quick Start

Add the `Temporalio.Extensions.OpenTelemetry` package from
[NuGet](https://www.nuget.org/packages/Temporalio.Extensions.OpenTelemetry). For example, using the `dotnet` CLI:

dotnet add package Temporalio.Extensions.OpenTelemetry --prerelease
dotnet add package Temporalio.Extensions.OpenTelemetry

In addition to configuring the OpenTelemetry tracer provider with the proper sources, the
`Temporalio.Extensions.OpenTelemetry.TracingInterceptor` class must be set as the interceptor when creating a client.
Expand Down

0 comments on commit b64dd6d

Please sign in to comment.