Skip to content

Commit

Permalink
🔖 Release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Feb 24, 2021
1 parent ad7e18c commit bfb69bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] - yyyy-mm-dd

### Added
- `ISchemeSafeDriver` interface for drivers who can install schemas on the database
- `buildSchema` to `JanusGraphDriver`

### Changed

### Fixed

## [0.2.2] - 2021-02-24

### Added
- `ISchemeSafeDriver` interface for drivers who can install schemas on the database
- `JanusGraphDriver::buildSchema` to dynamically build and install JanusGraph schema

## [0.2.1] - 2021-02-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion plume/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ dockerCompose {
def artifactDesc = "Plume is a code property graph analysis library with options to extract the CPG from" +
" Java bytecode and store the result in various graph databases."
def repoUrl = "https://github.com/plume-oss/plume.git"
def artifactVersion = "0.2.1"
def artifactVersion = "0.2.2"
def website = "https://plume-oss.github.io/plume-docs/"

group = "io.github.plume-oss"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.shiftleft.codepropertygraph.generated.NodeKeyNames

object ExtractorConst {
const val LANGUAGE_FRONTEND = "Plume"
const val LANGUAGE_FRONTEND_VERSION = "0.2.1"
const val LANGUAGE_FRONTEND_VERSION = "0.2.2"
val PRIMITIVES = listOf("boolean", "byte", "char", "double", "float", "int", "long", "null", "short", "void")
// block bodies
const val ENTRYPOINT = "BODY"
Expand Down

0 comments on commit bfb69bf

Please sign in to comment.