Skip to content

Commit

Permalink
fix: #1 ADding the missing exports
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Broudoux <[email protected]>
  • Loading branch information
lbroudoux committed Oct 5, 2023
1 parent 01098d8 commit edb10ec
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Node/TypeScript library for Testcontainers that enables embedding Microcks into

## Build Status

Latest released version is `0.1.0`.
Latest released version is `0.1.1`.

Current development version is `0.2.0`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microcks/microcks-testcontainers",
"version": "0.2.0",
"version": "0.1.1",
"author": "Laurent Broudoux <[email protected]>",
"description": "Node/TypeScript library for Testcontainers that enables embedding Microcks into your unit tests with lightweight, throwaway instance thanks to containers",
"bugs": {
Expand Down
19 changes: 18 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
export { MicrocksContainer, StartedMicrocksContainer } from "./microcks-container";
/*
* Copyright The Microcks Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { MicrocksContainer, StartedMicrocksContainer,
TestRequest, SecretRef, TestRunnerType,
TestResult, TestCaseResult, TestStepResult } from "./microcks-container";
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = "0.1.0";
export const LIB_VERSION = "0.1.1";

0 comments on commit edb10ec

Please sign in to comment.