From f1e62530376c617504c90e0cb750a7e827f385db Mon Sep 17 00:00:00 2001 From: Gregor Lato Date: Sat, 4 Dec 2021 23:20:53 +0100 Subject: [PATCH] Updated version to 1.0.0 --- README.md | 3 ++- emerge/appear.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22ab1f3..4d4e3c2 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ emerge   -The main goal of this project is to create a free/ open source tool, that can easily be used by anyone with interest in software development, architecture, metrics and visualization to gather more insights about those topics. It should facilitate/ support getting a better understanding of a given software project by using an exploratory approach. +The main goal of this project is to create a free/ open source tool, that can easily be used by anyone with interest in software development, architecture, metrics and visualization to gather more insights about those topics. It should facilitate/ support getting a better understanding of a given software project by using an [exploratory approach](https://en.wikipedia.org/wiki/Exploratory_data_analysis).   @@ -36,6 +36,7 @@ The main goal of this project is to create a free/ open source tool, that can ea - Basic implementation of the following software metrics: SLOC, Number of Methods, Fan-In/Fan-Out, Modularity (Louvain) - Logging support with configurable log levels - Configuration support based on YAML syntax to configure multiple/specific analyses +- Create a language/project configuration directly from an included configuration template - Export of scan results/ metrics/ statistics for the following formats/ outputs - Code dependency, inheritance, complete and filesystem graph (enriched with scan results/metrics) - [GraphML](http://graphml.graphdrawing.org) diff --git a/emerge/appear.py b/emerge/appear.py index d1d725d..e001329 100644 --- a/emerge/appear.py +++ b/emerge/appear.py @@ -31,8 +31,8 @@ LOGGER = Logger(logging.getLogger('emerge')) coloredlogs.install(level='E', logger=LOGGER.logger(), fmt=Logger.log_format) -__version__ = '0.20.0' -__updated__ = '2021-12-04 20:40:34' +__version__ = '1.0.0' +__updated__ = '2021-12-04 23:20:19' class Emerge: