Skip to content

Commit 187aad3

Browse files
committed
Prepared release 1.0.0.
1 parent 2681ed9 commit 187aad3

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 1.0.0 - 2021-02-16
4+
5+
- Initial release of the Combination API Server project.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
![Factorio Item Browser](https://raw.githubusercontent.com/factorio-item-browser/documentation/master/asset/image/logo.png)
2+
3+
# Combination API Server
4+
5+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/factorio-item-browser/combination-api-server)](https://github.com/factorio-item-browser/combination-api-server/releases)
6+
[![GitHub](https://img.shields.io/github/license/factorio-item-browser/combination-api-server)](LICENSE.md)
7+
[![build](https://img.shields.io/github/workflow/status/factorio-item-browser/combination-api-server/CI?logo=github)](https://github.com/factorio-item-browser/combination-api-server/actions)
8+
[![Codecov](https://img.shields.io/codecov/c/gh/factorio-item-browser/combination-api-server?logo=codecov)](https://codecov.io/gh/factorio-item-browser/combination-api-server)
9+
10+
This repository contains the server side of the Combination API managing the metadata of mod combinations as well as
11+
the export queue to have new combinations added to the Data API.

api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ info:
88
contact:
99
name: BluePsyduck
1010
email: bluepsyduck@gmx.com
11-
version: draft
11+
version: 1.0.0
1212
servers:
1313
- url: https://combination-api.factorio-item-browser.com/
1414
description: Live API server

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "factorio-item-browser/combination-api-server",
33
"description": "The server project of the Combination API.",
44
"homepage": "https://github.com/factorio-item-browser/combination-api-server",
5-
"type": "library",
5+
"type": "project",
66
"keywords": ["Factorio Item Browser", "FIB", "combination", "api", "server"],
77
"license": "GPL-3.0-or-later",
88
"authors": [
@@ -20,7 +20,7 @@
2020
"bluepsyduck/mapper-manager": "^1.2",
2121
"doctrine/orm": "^2.6",
2222
"factorio-item-browser/common": "^1.3",
23-
"factorio-item-browser/combination-api-client": "dev-master",
23+
"factorio-item-browser/combination-api-client": "^1.0",
2424
"laminas/laminas-config-aggregator": "^1.4",
2525
"laminas/laminas-diactoros": "^2.5",
2626
"laminas/laminas-log": "^2.13",

config/autoload/base.global.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
return [
1717
ConfigAggregator::ENABLE_CACHE => true,
1818
'debug' => false,
19-
'version' => '0.1.0',
19+
'version' => '1.0.0',
2020
];

src/Constant/ConfigKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace FactorioItemBrowser\CombinationApi\Server\Constant;
66

77
/**
8-
*
8+
* The interface holding the keys used in the config.
99
*
1010
* @author BluePsyduck <bluepsyduck@gmx.com>
1111
* @license http://opensource.org/licenses/GPL-3.0 GPL v3

0 commit comments

Comments
 (0)